github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/terraform/test-fixtures/apply-destroy-mod-var-and-count-nested/main.tf (about)

     1  variable "mod_count_root" {
     2    type = "string"
     3    default = "3"
     4  }
     5  
     6  module "child" {
     7    source    = "./child"
     8    mod_count_child = "${var.mod_count_root}"
     9  }