opentofu/command/test-fixtures/apply-plan-no-module/main.tf
James Bardin 2cffa25235 Add test to verify that Validation isn't called
The apply won't succeed because we don't have a valid plan, but this
verifies that providing a plan file prevents Validation.
2017-03-27 18:39:18 -04:00

8 lines
145 B
HCL

resource "test_instance" "tmpl" {
foo = "${file("${path.module}/template.txt")}"
}
output "template" {
value = "${test_instance.tmpl.foo}"
}