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