Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment