mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Update formatting of all Terraform configuration files per `terraform fmt` Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
11 lines
197 B
HCL
11 lines
197 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}"
|
|
}
|