github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/configs/configload/testdata/child-provider-grandchild-count/child/child-provider-grandchild-count-child.tf (about) 1 provider "boop" { 2 blah = true 3 } 4 5 module "grandchild" { 6 source = "../grandchild" 7 8 # grandchild's caller (this file) has a legacy nested provider block, but 9 # grandchild itself does not and so it's valid to use "count" here even 10 # though it wouldn't be valid to call "child" (this file) with "count". 11 count = 2 12 }