Files
2023-09-20 15:16:53 +03:00

13 lines
232 B
HCL

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