opentofu/command/test-fixtures/plan-invalid/main.tf
Mitchell Hashimoto 609219fc65 command/meta: validate config immediately
* config: test for validating multi-vars (passes)

* command/plan: test invalid run

* command/meta: validate module on load
2016-09-03 15:26:49 -07:00

8 lines
133 B
HCL

resource "test_instance" "foo" {
count = 5
}
resource "test_instance" "bar" {
count = "${length(test_instance.foo.*.id)}"
}