github.com/opentofu/opentofu@v1.7.1/internal/configs/testdata/config-diagnostics/tests-provider-mismatch-with-module/main.tftest.hcl (about)

     1  
     2  provider "foo" {}
     3  
     4  provider "foo" {
     5    alias = "bar"
     6  }
     7  
     8  provider "bar" {}
     9  
    10  run "setup_module" {
    11  
    12    module {
    13      source = "./setup"
    14    }
    15  
    16  }
    17  
    18  run "main_module" {}