From a0dc0740f2e70885491c98a8a4014fd36ff797cd Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Wed, 14 Jul 2021 12:23:35 +0200 Subject: [PATCH] docs(AWS IAM): Fix invalid example --- docs/providers/aws/guide/iam.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/providers/aws/guide/iam.md b/docs/providers/aws/guide/iam.md index 846e99c26..2a3d4bc6e 100644 --- a/docs/providers/aws/guide/iam.md +++ b/docs/providers/aws/guide/iam.md @@ -27,11 +27,11 @@ provider: name: custom-role-name path: /custom-role-path/ statements: - - Effect: 'Allow', - Resource: '*', - NotAction: 'iam:DeleteUser', + - Effect: 'Allow' + Resource: '*' + Action: 'iam:DeleteUser' managedPolicies: - - 'arn:aws:iam::123456789012:user/*', + - 'arn:aws:iam::123456789012:user/*' permissionsBoundary: arn:aws:iam::123456789012:policy/boundaries tags: key: value