Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
data-source-read-with-plan-error
/
main.tf
blob: 2559406f7ab53eca72e39be0c732de9295b68a53 [
file
] [
log
] [
blame
]
resource
"aws_instance"
"foo"
{
}
// this will be postponed until apply
data
"aws_data_source"
"foo"
{
foo
=
aws_instance
.
foo
.
id
}
// this will cause an error in the final plan
resource
"test_instance"
"bar"
{
foo
=
"error"
}