scottslowe-learning-tools/terraform/aws/simple-module/modules/vpc/output.tf
Scott Lowe fa0bd115bb Commit first run at using modules
Commit a set of files that show the use of modules

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-05-25 08:59:01 -06:00

11 lines
257 B
HCL

output "new_vpc_id" {
value = "${aws_vpc.vpc.id}"
}
output "new_subnet_id" {
value = "${aws_subnet.subnet.id}"
}
output "new_subnet_az" {
value = "${aws_subnet.subnet.availability_zone}"
}