From 3e7d613ff989d299465af4a163ce5bde4912a9b9 Mon Sep 17 00:00:00 2001 From: Scottpedia Date: Sat, 20 Mar 2021 16:37:42 -0400 Subject: [PATCH] fix more AZ issues --- aws/cloudformation-template-ipsec.json | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/aws/cloudformation-template-ipsec.json b/aws/cloudformation-template-ipsec.json index 1496752..d8be5c9 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 }, @@ -883,4 +893,4 @@ "Value": "https://github.com/hwdsl2/setup-ipsec-vpn#next-steps" } } -} +} \ No newline at end of file