opentofu/terraform/test-fixtures/apply-count-variable-ref/main.tf
2016-08-31 11:54:14 -07:00

12 lines
170 B
HCL

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