From cfdae26b78df7ef14229d02133ce106d1da08362 Mon Sep 17 00:00:00 2001 From: Oskar Andero Date: Fri, 8 Jun 2018 13:31:01 +0200 Subject: [PATCH] pipeline: use NoValue instead of double quotes Cloudformation will fail due to parameter constraints when using double quotes. --- pipeline/pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/pipeline.yaml b/pipeline/pipeline.yaml index e2c74cb..f6a8f7f 100644 --- a/pipeline/pipeline.yaml +++ b/pipeline/pipeline.yaml @@ -159,7 +159,7 @@ Resources: ChangeSetName: pipeline-changeset Capabilities: CAPABILITY_NAMED_IAM TemplatePath: !Sub "${AppName}-BuildArtifact::${SAMOutputFile}" - TemplateConfiguration: !If [ HasStagingVariables, !Sub "${AppName}-BuildArtifact::${StagingFile}", "" ] + TemplateConfiguration: !If [ HasStagingVariables, !Sub "${AppName}-BuildArtifact::${StagingFile}", !Ref "AWS::NoValue" ] RunOrder: 1 - Name: execute-changeset InputArtifacts: []