Files
opentf/terraform/test-fixtures/validate-computed-module-var-ref/source/main.tf
Paul Hinze b205ac2123 core: Another validate test for computed module var refs
I wanted to make sure this case was handled, and it is!

So here's an extra test for us.
2016-05-23 15:54:14 -05:00

4 lines
97 B
HCL

resource "aws_instance" "source" { }
output "sourceout" { value = "${aws_instance.source.id}" }