From 5eda510b2af7e28af62f622a49003fb493922cc6 Mon Sep 17 00:00:00 2001 From: Scottpedia Date: Tue, 19 Jan 2021 01:37:32 -0500 Subject: [PATCH] fix template validation errors --- aws/cloudformation-template-ipsec.json | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/aws/cloudformation-template-ipsec.json b/aws/cloudformation-template-ipsec.json index beece8f..a911ef8 100644 --- a/aws/cloudformation-template-ipsec.json +++ b/aws/cloudformation-template-ipsec.json @@ -406,14 +406,7 @@ "sh vpnsetup.sh\n", { "Fn::If": [ - { - "Fn::Equals": [ - { - "Ref": "IfSetupIKEV2" - }, - "true" - ] - }, + "IfSetupIKEV2Condition", "wget https://git.io/ikev2setup -O ikev2.sh && bash ikev2.sh --auto\n", "" ] @@ -809,6 +802,16 @@ } } }, + "Conditions": { + "IfSetupIKEV2Condition": { + "Fn::Equals": [ + { + "Ref": "IfSetupIKEV2" + }, + "true" + ] + } + }, "Parameters": { "VpnUser": { "Type": "String", @@ -862,7 +865,7 @@ "true", "false" ], - "default": "false" + "Default": "false" } }, "Outputs": {