github.com/handlerbot/terraform@v0.10.0-beta1.0.20180726153736-26b68d98f9cb/terraform/test-fixtures/input-interpolate-var/child/main.tf (about)

     1  variable "list" { }
     2  resource "template_file" "temp" {
     3    count     = "${length(split(",", var.list))}"
     4    template  = "foo"
     5  }