When follow this Github case:amazon-textract-serverless-large-scale-document-processing to execute cdk bootstrap
, an error message shows when "CDKToolkit:creating CloudFormation changset..." as "ValidationError: Stack [CDKToolkit] does not exist."
Used to refer to this Stack Overflow case to update policy for DescribeStack, DescribeChangeset and Createchangeset already.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"cloudformation:CreateChangeSet",
"cloudformation:DescribeChangeSet",
"cloudformation:DescribeStacks"
],
"Resource": "*"
}
]
}
Would like to know what need to do more to proceed.