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

Update the user-data script.

- Extract the os-specific commands to install python3 and helper scripts from the mapping-data.
- Extract the OS-specific installation links for VPN softwares from the mapping data.
This commit is contained in:
Scottpedia 2021-01-01 19:25:29 -05:00
parent 55a415f78b
commit 2828ceb97d

View file

@ -349,10 +349,15 @@
},
"' ERR\n",
"sleep 60\n",
"export DEBIAN_FRONTEND=noninteractive\n",
"apt-get -yq update\n",
"apt-get -yq install python3-pip\n",
"pip3 install https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz\n",
{
"Fn::FindInMap": [
"OS",
{
"Ref": "OS"
},
"HelperInstallationCommands"
]
},
"export VPN_IPSEC_PSK='",
{
"Ref": "VpnIpsecPsk"
@ -368,7 +373,17 @@
"Ref": "VpnPassword"
},
"'\n",
"wget -t 3 -T 30 -nv -O vpnsetup.sh https://git.io/vpnsetup\n",
"wget -t 3 -T 30 -nv -O vpnsetup.sh ",
{
"Fn::FindInMap": [
"OS",
{
"Ref": "OS"
},
"InstallationLinks"
]
},
"\n",
"sh vpnsetup.sh\n",
"cfn-signal -e 0 ",
" --stack ",