Skip to content

Instantly share code, notes, and snippets.

@mtheoryx
Created April 19, 2022 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mtheoryx/734a16a94b4b05486f5615d198a51210 to your computer and use it in GitHub Desktop.
Save mtheoryx/734a16a94b4b05486f5615d198a51210 to your computer and use it in GitHub Desktop.
Minimum permissions to CDK bootstrap and account and region
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "0",
"Effect": "Allow",
"Action": "cloudformation:DescribeStacks",
"Resource": "arn:aws:cloudformation:<REGION>:<ACCOUNT_NUMBER>:stack/CDKToolkit/*"
},
{
"Sid": "1",
"Effect": "Allow",
"Action": "cloudformation:CreateChangeSet",
"Resource": "arn:aws:cloudformation:<REGION>:<ACCOUNT_NUMBER>:stack/CDKToolkit/*"
},
{
"Sid": "2",
"Effect": "Allow",
"Action": "cloudformation:DescribeChangeSet",
"Resource": "arn:aws:cloudformation:<REGION>:<ACCOUNT_NUMBER>:stack/CDKToolkit/*"
},
{
"Sid": "3",
"Effect": "Allow",
"Action": "cloudformation:ExecuteChangeSet",
"Resource": "arn:aws:cloudformation:<REGION>:<ACCOUNT_NUMBER>:stack/CDKToolkit/*"
},
{
"Sid": "4",
"Effect": "Allow",
"Action": "cloudformation:GetTemplate",
"Resource": "arn:aws:cloudformation:<REGION>:<ACCOUNT_NUMBER>:stack/CDKToolkit/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment