github.com/eliastor/durgaform@v0.0.0-20220816172711-d0ab2d17673e/internal/durgaform/testdata/apply-destroy-mod-var-and-count-nested/child/main.tf (about)

     1  variable "mod_count_child" { }
     2  
     3  module "child2" {
     4    source    = "./child2"
     5    mod_count_child2 = "${var.mod_count_child}"
     6  }
     7  
     8  resource "aws_instance" "foo" { }