CloudFormation, create stack with a template signature version 4 error

0

I try to create a stack in cloud formation in ap-southeast-2 using template stored in s3 us-east-1. But aws console cloud formation wizard fails screenshot

How to fix it?

asked 4 months ago174 views
1 Answer
0

Hello.

The following document states that the use of Signature Version 2 is deprecated.
I think this is probably related.
https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingAWSSDK.html#UsingAWSSDK-move-to-Sig4

As a workaround, instead of creating it from the management console, you can create a CloudFormation stack by running the AWS CLI as shown below.

aws cloudformation create-stack --stack-name test --template-url https://codeguru-security-371921485547.s3-accesspoint.us-east-1.amazonaws.com/setup-github.yml --parameters ParameterKey=Repository,ParameterValue=test --capabilities CAPABILITY_NAMED_IAM
profile picture
EXPERT
answered 4 months ago
profile pictureAWS
EXPERT
reviewed 4 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions