github.com/opentofu/opentofu@v1.7.1/internal/tofu/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