mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
12 lines
235 B
HCL
12 lines
235 B
HCL
output "vpc_id" {
|
|
value = "${alicloud_vpc.main.id}"
|
|
}
|
|
|
|
output "vswitch_ids" {
|
|
value = "${join(",", alicloud_vswitch.main.*.id)}"
|
|
}
|
|
|
|
output "availability_zones" {
|
|
value = "${join(",",alicloud_vswitch.main.*.availability_zone)}"
|
|
}
|