├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── main.tf ├── outputs.tf ├── templates ├── iam_instance_role_policy.json.tpl ├── key_policy.json.tpl └── user_data.sh.tpl └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/README.md -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/outputs.tf -------------------------------------------------------------------------------- /templates/iam_instance_role_policy.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/templates/iam_instance_role_policy.json.tpl -------------------------------------------------------------------------------- /templates/key_policy.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/templates/key_policy.json.tpl -------------------------------------------------------------------------------- /templates/user_data.sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/templates/user_data.sh.tpl -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsgang/terraform-aws-pritunl-vpn-server/HEAD/variables.tf --------------------------------------------------------------------------------