Trying to deploy a CloudFormation template that is stored in an S3 bucket as the template size is larger than 51kb so cant be done direct (from what I am led to believe and have seen when trying)
Doing this via ADO pipeline using AWS cli
I can upload the template to S3 bucket and validate it OK
But cant find the correct command to actually deploy the template that is stored in the S3 bucket?
aws cloudformation deploy does not have a --template-url flag like update-stack does?
And if I try passing the S3 uri to the --template-file flag it errors out
I am probably just missing something here - not sure what though
Thanks
aws cloudformation create-stack(orupdate-stackif the stack already exists) with the--template-url https://mybucket.s3.<region>.amazonaws.com/path/template.yamloption.