mirror of
https://github.com/opentofu/opentofu.git
synced 2026-06-03 21:52:43 -04:00
11 lines
182 B
HCL
11 lines
182 B
HCL
variable "instance_count" {
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
count = "${var.instance_count}"
|
|
}
|
|
|
|
module "submod" {
|
|
source = "./submod"
|
|
list = ["${aws_instance.foo.*.id}"]
|
|
}
|