From a46a33b537a99ac8bd9ccba85e0f9b4c0c0feff6 Mon Sep 17 00:00:00 2001 From: Ujwal Jagadeesh <59735375+yoU-Jay@users.noreply.github.com> Date: Sun, 25 Apr 2021 22:46:48 +0530 Subject: [PATCH] Fixed the following Error when BBBEnvironmentType is set as 'single' 'Condition: BBBScalableEnvironment ' should be added after line 90. Error Caused: CREATE_FAILED Template format error: Unresolved resource dependencies [BBBFrontendELBSecurityGroup] in the Resources block of the template. Above error is caused while deploying 'Single Server deployments' and can be solved by adding the condition line after line 90. --- templates/bbb-on-aws-securitygroups.template.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/bbb-on-aws-securitygroups.template.yaml b/templates/bbb-on-aws-securitygroups.template.yaml index e3e05c0..35c0a2b 100644 --- a/templates/bbb-on-aws-securitygroups.template.yaml +++ b/templates/bbb-on-aws-securitygroups.template.yaml @@ -88,6 +88,7 @@ Resources: BBBECSSecurityGroupPublicHTTP: Type: AWS::EC2::SecurityGroupIngress + Condition: BBBScalableEnvironment Properties: CidrIp: 0.0.0.0/0 IpProtocol: tcp