mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06: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}"
|
|
}
|