Skip to content

t04glovern/aws-pptp-cloudformation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PPTP Server - CloudFormation

Deploying a Private VPN to AWS EC2 using CloudFormation

https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png

Quickstart

Make the neccessary changes to the pptp-server-params.json file, being sure to define new username & password parameters

{
    "ParameterKey": "VPNUsername",
    "ParameterValue": "nathan"
},
{
    "ParameterKey": "VPNPassword",
    "ParameterValue": "passw0rd1"
},
{
    "ParameterKey": "VPNPhrase",
    "ParameterValue": "passw0rd1"
},

The template can be deployed using the AWS cli by running the following:

aws cloudformation create-stack --stack-name "pptp-vpn" \
    --template-body file://pptp-server.yaml \
    --parameters file://pptp-server-params.json \
    --region us-east-1

Note: The --region parameter is used to define which region the VPN should be deployed to.

Get details, including the Server address for your VPN:

aws cloudformation describe-stacks --stack-name "pptp-vpn" \
    --region us-east-1 \
    --query 'Stacks[0].Outputs[?OutputKey==`VPNServerAddress`].OutputValue' \
    --output text

Attribution

This configuration is based on the work done by webdigi who's work can be founds below:

About

Deploying a Private VPN to AWS EC2 using CloudFormation

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published