mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 10:01:08 -04:00
Apparently there's been a regression in the creation of data resource diffs: they aren't showing up in the plan at all. As a first step to fixing this, this is an intentionally-failing test that proves it's broken.
9 lines
128 B
HCL
9 lines
128 B
HCL
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
compute = "foo"
|
|
}
|
|
|
|
data "aws_vpc" "bar" {
|
|
foo = "${aws_instance.foo.foo}"
|
|
}
|