https://github.com/huksley/terraform-aws-vpc
Automatically creates VPC on AWS
https://github.com/huksley/terraform-aws-vpc
aws network terraform vpc
Last synced: 2 months ago
JSON representation
Automatically creates VPC on AWS
- Host: GitHub
- URL: https://github.com/huksley/terraform-aws-vpc
- Owner: huksley
- Created: 2018-06-13T11:20:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-10T09:59:57.000Z (almost 8 years ago)
- Last Synced: 2025-02-17T09:30:44.853Z (over 1 year ago)
- Topics: aws, network, terraform, vpc
- Language: HCL
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Terraform AWS VPC scripts
Creates VPC on AWS with gateway and subnets configured.
## Example
```hcl
module "build_vpc" {
source = "github.com/huksley/terraform-aws-vpc?ref=1.0_GA"
prefix = "${var.namespace}-vpc-${var.stage}"
aws_region = "${var.aws_region}"
aws_account_id = "${var.aws_account_id}"
az_count = 2
}
```