Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
apply-provisioner-multi-self-ref
/
main.tf
blob: 72a1e7920076b8bb7bff849b38e5e711ff616466 [
file
] [
log
] [
blame
]
resource
"aws_instance"
"foo"
{
count
=
3
foo
=
"number ${count.index}"
provisioner
"shell"
{
command
=
"${self.foo}"
}
}