Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
apply-count-variable-ref
/
main.tf
blob: 8e9e4526612a7b3bf6e59def790057435e80ef81 [
file
] [
log
] [
blame
]
variable
"foo"
{
default
=
"2"
}
resource
"aws_instance"
"foo"
{
count
=
"${var.foo}"
}
resource
"aws_instance"
"bar"
{
foo
=
length
(
aws_instance
.
foo
)
}