opentofu/internal/command/testdata/test/pass_with_locals/main.tf
Liam Cervante dfc26c2ac4
[Testing Framework] Add test command to Terraform CLI (#33327)
* Add test structure to views package for rendering test output

* Add test file HCL configuration and parser functionality

* Adds a TestContext structure for evaluating assertions against the state and plan

* Add test command to Terraform CLI
2023-06-28 09:37:42 +02:00

8 lines
93 B
HCL

resource "test_instance" "foo" {
ami = "bar"
}
locals {
value = test_instance.foo.ami
}