1
0
Fork 0
mirror of synced 2025-04-05 14:13:37 +03:00

update AWS template

This commit is contained in:
Scottpedia 2021-01-19 01:16:54 -05:00
parent 554918e41a
commit 6a0d3a5792

View file

@ -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": {