mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 10:01:08 -04:00
12 lines
162 B
HCL
12 lines
162 B
HCL
variable "count" {
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
count = "${var.count}"
|
|
}
|
|
|
|
module "submod" {
|
|
source = "./submod"
|
|
list = ["${aws_instance.foo.*.id}"]
|
|
}
|