mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 10:01:08 -04:00
* config: test for validating multi-vars (passes) * command/plan: test invalid run * command/meta: validate module on load
8 lines
133 B
HCL
8 lines
133 B
HCL
resource "test_instance" "foo" {
|
|
count = 5
|
|
}
|
|
|
|
resource "test_instance" "bar" {
|
|
count = "${length(test_instance.foo.*.id)}"
|
|
}
|