awslabs/aws-security-assessment-solution

Template malforms S3 links

rdoleski87 opened this issue · 2 comments

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'

We are testing a fix for this issue right now.

Change pushed to the template.