You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aws-vpc-simple/main.tf

12 lines
255 B

module "vpc" {
source = "scholzj/vpc/aws"
aws_region = "${var.aws_region}"
aws_zones = "${var.aws_zones}"
vpc_name = "${var.vpc_name}"
vpc_cidr = "${var.vpc_cidr}"
private_subnets = "${var.private_subnets}"
## Tags
tags = "${var.tags}"
}