mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-28 17:34:24 -06:00
8 lines
110 B
Terraform
8 lines
110 B
Terraform
|
resource "null_resource" "foo" {
|
||
|
count = 1
|
||
|
}
|
||
|
|
||
|
output "test" {
|
||
|
value = "${sort(null_resource.foo.*.id)}"
|
||
|
}
|