mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 04:00:58 -05:00
12 lines
182 B
HCL
12 lines
182 B
HCL
variable "instance_count" {
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
count = "${var.instance_count}"
|
|
}
|
|
|
|
module "submod" {
|
|
source = "./submod"
|
|
list = ["${aws_instance.foo.*.id}"]
|
|
}
|