mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-07 22:53:08 -06:00
8 lines
176 B
HCL
8 lines
176 B
HCL
output "hostname_list" {
|
|
value = "${join(",", alicloud_instance.instance.*.instance_name)}"
|
|
}
|
|
|
|
output "ecs_ids" {
|
|
value = "${join(",", alicloud_instance.instance.*.id)}"
|
|
}
|