Skip to content

Commit 03d6f6e

Browse files
authored
Merge pull request #49 from robd/patch-1
Only recommended required IAM user permissions
2 parents c143741 + 835fce1 commit 03d6f6e

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ This action requires the following minimum set of permissions:
4343

4444
```
4545
{
46-
"Version":"2012-10-17",
47-
"Statement":[{
48-
"Effect":"Allow",
49-
"Action":[
50-
"cloudformation:*"
51-
],
52-
"Resource":"*"
53-
},
54-
{
55-
"Effect":"Deny",
56-
"Action":[
57-
"cloudformation:DeleteStack"
58-
],
59-
"Resource":"arn:aws:cloudformation:us-east-1:123456789012:stack/MyProductionStack/*"
60-
}]
46+
"Version": "2012-10-17",
47+
"Statement": [
48+
{
49+
"Effect": "Allow",
50+
"Action": [
51+
"cloudformation:CreateStack",
52+
"cloudformation:DescribeStacks",
53+
"cloudformation:CreateChangeSet",
54+
"cloudformation:DescribeChangeSet",
55+
"cloudformation:DeleteChangeSet",
56+
"cloudformation:ExecuteChangeSet"
57+
],
58+
"Resource": "*"
59+
}
60+
]
6161
}
6262
```
6363

0 commit comments

Comments
 (0)