initial commit of replacement infrastructure automation
[awsible] / infrastructure / vpc / main.tf
1 provider "aws" {
2 region = "${var.region}"
3 }
4
5 module "vpc" {
6 source = "../modules/tf_aws_vpc"
7 project = "${var.project}"
8 environment = "${var.environment}"
9 cidr = "${var.vpc_cidr}"
10 public_azs = "${var.vpc_public_azs}"
11 private_azs = "${var.vpc_private_azs}"
12 ssh_allowed_cidr = "${var.ssh_allowed_cidr}"
13 }