8 lines
133 B
Terraform
8 lines
133 B
Terraform
|
resource "test_instance" "foo" {
|
||
|
count = 5
|
||
|
}
|
||
|
|
||
|
resource "test_instance" "bar" {
|
||
|
count = "${length(test_instance.foo.*.id)}"
|
||
|
}
|