Template malforms S3 links
rdoleski87 opened this issue · 2 comments
rdoleski87 commented
The latest version of the SelfServiceSec.yml template is malforming S3 links:
rVPCStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: !Join
- ''
- - 'https://'
- !Ref TemplateS3Bucket
- '.s3-'
- !Ref "AWS::Region"
- '.amazonaws.com/SelfServiceSecVPC.yml'
It should read:
rVPCStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: !Join
- ''
- - 'https://'
- !Ref TemplateS3Bucket
- '.s3.'
- !Ref "AWS::Region"
- '.amazonaws.com/SelfServiceSecVPC.yml'
aws-brad commented
We are testing a fix for this issue right now.
aws-brad commented
Change pushed to the template.