github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/terraform/testdata/apply-destroy-provisider-refs/main.tf (about) 1 provider "null" { 2 value = "" 3 } 4 5 module "mod" { 6 source = "./mod" 7 } 8 9 provider "test" { 10 value = module.mod.output 11 } 12 13 resource "test_instance" "bar" { 14 } 15