Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
plan-cbd-maintain-root
/
main.tf
blob: 99c96b9eee42bd1b07dda1594825ceb3e5e8f8c0 [
file
] [
log
] [
blame
]
resource
"aws_instance"
"foo"
{
count
=
"2"
lifecycle
{
create_before_destroy
=
true
}
}
resource
"aws_instance"
"bar"
{
count
=
"2"
lifecycle
{
create_before_destroy
=
true
}
}
output
"out"
{
value
=
"${aws_instance.foo.0.id}"
}