mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-05 15:02:02 -04:00
13 lines
232 B
HCL
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"
|
|
}
|