mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06: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)}"
|
|
}
|