mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-14 02:32:39 -06:00
12 lines
196 B
HCL
12 lines
196 B
HCL
variable "instance_count" {
|
|
default = 1
|
|
}
|
|
|
|
resource "aws_instance" "test" {
|
|
count = "${var.instance_count}"
|
|
}
|
|
|
|
resource "aws_instance" "dependent" {
|
|
count = "${length(aws_instance.test)}"
|
|
}
|