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"
}