Files
opentf/terraform/testdata/plan-count-computed-module/child/main.tf
2019-06-30 10:16:15 +02:00

6 lines
82 B
HCL

variable "value" {}
resource "aws_instance" "bar" {
count = "${var.value}"
}