From 3dccb0c5b77ce770c1703a0d057270aa619e8290 Mon Sep 17 00:00:00 2001 From: Scottpedia Date: Sat, 20 Mar 2021 16:39:13 -0400 Subject: [PATCH] fix more AZ issues --- aws/cloudformation-template-ipsec.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/aws/cloudformation-template-ipsec.json b/aws/cloudformation-template-ipsec.json index 1496752..8bd3ef2 100644 --- a/aws/cloudformation-template-ipsec.json +++ b/aws/cloudformation-template-ipsec.json @@ -291,7 +291,12 @@ "CidrBlock": "10.0.0.0/24", "MapPublicIpOnLaunch": true, "AvailabilityZone": { - "Fn::Sub": "${AWS::Region}a" + "Fn::Select": [ + "0", + { + "Fn::GetAZs": "" + } + ] } }, "Metadata": { @@ -512,7 +517,12 @@ "Type": "AWS::EC2::Volume", "Properties": { "AvailabilityZone": { - "Fn::Sub": "${AWS::Region}a" + "Fn::Select": [ + "0", + { + "Fn::GetAZs": "" + } + ] }, "Size": 8 },