Created
March 31, 2017 20:00
-
-
Save duduribeiro/ef0bbdecf0d2b2441a85f2cc548d68d1 to your computer and use it in GitHub Desktop.
Terraform staging - networking.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module "networking" { | |
source = "../modules/networking" | |
environment = "${var.environment}" | |
vpc_cidr = "${var.vpc_cidr}" | |
public_subnet_cidr = "${var.public_subnet_cidr}" | |
private_subnet_cidr = "${var.private_subnet_cidr}" | |
region = "${var.region}" | |
availability_zone = "${var.availability_zone}" | |
key_name = "${var.key_name}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment