Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
plan-untargeted-resource-output
/
mod
/
main.tf
blob: dd6d791cba4fcf99e35fe37f0c9b48558eaadf9c [
file
] [
log
] [
blame
]
locals
{
one
=
1
}
resource
"aws_instance"
"a"
{
count
=
"${local.one}"
}
resource
"aws_instance"
"b"
{
count
=
"${local.one}"
}
output
"output"
{
value
=
"${join("", coalescelist(aws_instance.a.*.id, aws_instance.b.*.id))}"
}