Skip to content

Instantly share code, notes, and snippets.

@pgporada
Last active March 20, 2017 21:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pgporada/758e2e530aa56b3b9e20098203ae069e to your computer and use it in GitHub Desktop.
Save pgporada/758e2e530aa56b3b9e20098203ae069e to your computer and use it in GitHub Desktop.
Phil's terraform-vpc
.
├── bumpver.sh*
├── environments/
│   ├── mgmt/
│   │   └── mgmt.tfvars
│   └── prod/
│   └── prod.tfvars
├── main.tf
├── Makefile
├── modules/
│   ├── aws2glhq-vpn/
│   │   └── hardware-vpn.tf
│   ├── azs/
│   │   └── azs.tf
│   ├── nat/
│   │   └── nat.tf
│   ├── private_routing/
│   │   └── private_routing.tf
│   ├── private_subnet/
│   │   └── private_subnet.tf
│   ├── public_routing/
│   │   └── public_routing.tf
│   ├── public_subnet/
│   │   └── public_subnets.tf
│   ├── vpc/
│   │   └── vpc.tf
│   └── vpc_peering/
│   └── vpc_peering.tf
└── README.md
13 directories, 15 files
terraform {
required_version = ">= 0.8.8"
}
provider "aws" {
region = "${var.region}"
profile = "default"
allowed_account_ids = ["${var.aws_accountid}"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment