Skip to content

Instantly share code, notes, and snippets.

@mtheoryx
Created April 19, 2022 18:31
Show Gist options
  • Save mtheoryx/f38ee31edccd203532488e8d009f56dc to your computer and use it in GitHub Desktop.
Save mtheoryx/f38ee31edccd203532488e8d009f56dc to your computer and use it in GitHub Desktop.
Consolidated minimum permissions to CDK bootstap an AWS account and region
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "0",
"Effect": "Allow",
"Action": [
"cloudformation:DescribeStacks",
"cloudformation:CreateChangeSet",
"cloudformation:DescribeChangeSet",
"cloudformation:ExecuteChangeSet",
"cloudformation:GetTemplate"
],
"Resource": "arn:aws:cloudformation:<REGION>:<ACCOUNT_NUMBER>:stack/CDKToolkit/*"
}
]
}
@soygcm
Copy link

soygcm commented Feb 27, 2024

It looks like is no accurate any more, but thanks, very helpful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment