8 lines
132 B
Terraform
8 lines
132 B
Terraform
|
resource "test_instance" "foo" {
|
||
|
count = 3
|
||
|
}
|
||
|
|
||
|
resource "test_load_balancer" "foo" {
|
||
|
instances = ["${test_instance.foo.*.id}"]
|
||
|
}
|