mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
609219fc65
* 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)}"
|
|
}
|