Run to create/manage AWS resources
- VPC
- Internet Gateway
- IAM resources
- S3 Buckets - various
- state.tf - add environment specific bucket names and provisioner role
- terraform.tfvars - add environment specific setting here
aws_region = "<region name>"
aws_zones = ["<list of zones go here""]
aws_acc_num = "<account number>"
vpc_cidr = "<vpc cidr block>"
vpc_name = "<vpc tag>"
The first thing you need after updating your environment specific files.
terraform init
That'll get you started. From here the standard terraform apply
can be run.