scottslowe-learning-tools/terraform/aws/ic-module/modules/vpc/output.tf
Scott Lowe 5645144589
Update formatting
Update formatting of all Terraform configuration files per `terraform fmt`

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-10-18 11:52:09 -06:00

15 lines
270 B
HCL

output "vpc_id" {
value = "${aws_vpc.vpc.id}"
}
output "subnet_id" {
value = "${aws_subnet.subnet.*.id}"
}
output "subnet_az" {
value = "${aws_subnet.subnet.*.availability_zone}"
}
output "default_sg_id" {
value = "${aws_vpc.vpc.default_security_group_id}"
}