From ebd89c40aab4fd8f1e9e7b0cdbb0536337a3761a Mon Sep 17 00:00:00 2001 From: Nathan Gillett Date: Fri, 18 Mar 2022 12:18:11 -0400 Subject: [PATCH] Fix distribution deployment Cache behavior of distributions require a list of trusted key groups, but was being given a string value in our template, exodus-lambda-deploy.yaml. This commit corrects the mistake. --- configuration/exodus-lambda-deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/exodus-lambda-deploy.yaml b/configuration/exodus-lambda-deploy.yaml index 6e41d6ff..4ed23eca 100644 --- a/configuration/exodus-lambda-deploy.yaml +++ b/configuration/exodus-lambda-deploy.yaml @@ -88,7 +88,7 @@ Resources: TrustedKeyGroups: !If - EnableKeyGroup - - !Ref KeyGroup + - - !Ref KeyGroup - !Ref AWS::NoValue ViewerProtocolPolicy: redirect-to-https Enabled: true