mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 11:42:58 -06:00
dfc26c2ac4
* 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
8 lines
93 B
HCL
8 lines
93 B
HCL
resource "test_instance" "foo" {
|
|
ami = "bar"
|
|
}
|
|
|
|
locals {
|
|
value = test_instance.foo.ami
|
|
}
|