github.com/chentex/terraform@v0.11.2-0.20171208003256-252e8145842e/terraform/test-fixtures/plan-taint-interpolated-count/main.tf (about)

     1  variable "count" {
     2    default = 3
     3  }
     4  
     5  resource "aws_instance" "foo" {
     6    count = "${var.count}"
     7  }