mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
Update tests to match the new behavior. Some were incorrect, some no longer make sense, and some just weren't setup to handle th plan api calls.
9 lines
130 B
HCL
9 lines
130 B
HCL
module "child" {
|
|
input = aws_instance.bar.foo
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
compute = "foo"
|
|
}
|