mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
609219fc65
* config: test for validating multi-vars (passes) * command/plan: test invalid run * command/meta: validate module on load
6 lines
116 B
HCL
6 lines
116 B
HCL
resource "aws_instance" "foo" {}
|
|
|
|
resource "aws_instance" "web" {
|
|
count = "${length(aws_instance.foo.*.bar)}"
|
|
}
|