From 6a0d3a5792629368391542490b433d870c50ee7f Mon Sep 17 00:00:00 2001 From: Scottpedia Date: Tue, 19 Jan 2021 01:16:54 -0500 Subject: [PATCH] update AWS template --- aws/cloudformation-template-ipsec.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/aws/cloudformation-template-ipsec.json b/aws/cloudformation-template-ipsec.json index 56775a6..de5ad64 100644 --- a/aws/cloudformation-template-ipsec.json +++ b/aws/cloudformation-template-ipsec.json @@ -404,6 +404,20 @@ }, "\n", "sh vpnsetup.sh\n", + { + "Fn::If": [ + { + "Fn::Equals": [ + { + "Ref": "IfSetupIKEV2" + }, + "true" + ] + }, + "wget https://git.io/ikev2setup -O ikev2.sh && bash ikev2.sh --auto\n", + "" + ] + }, "cfn-signal -e 0 ", " --stack ", { @@ -840,6 +854,15 @@ "t1.micro" ], "Default": "t2.micro" + }, + "IfSetupIKEV2": { + "Type": "String", + "description": "If to setup the IKEv2 on the VPN server. For more information, please visit https://github.com/hwdsl2/setup-ipsec-vpn/blob/master/docs/ikev2-howto.md", + "AllowedValues": [ + "true", + "false" + ], + "default": "false" } }, "Outputs": {