An open API service indexing awesome lists of open source software.

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

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
}
```