opentofu/terraform/testdata/apply-count-variable-ref/main.tf
2019-06-30 10:16:15 +02:00

12 lines
161 B
HCL

variable "foo" {
default = "2"
}
resource "aws_instance" "foo" {
count = "${var.foo}"
}
resource "aws_instance" "bar" {
foo = length(aws_instance.foo)
}