opentofu/terraform/test-fixtures/apply-unknown-interpolate/main.tf
2015-06-24 22:25:48 -07:00

7 lines
115 B
HCL

resource "aws_instance" "foo" {}
module "child" {
source = "./child"
value = "${aws_instance.foo.nope}"
}