github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/configs/testdata/config-diagnostics/tests-provider-mismatch/main.tf (about) 1 terraform { 2 required_providers { 3 foo = { 4 source = "hashicorp/foo" 5 configuration_aliases = [foo.bar] 6 } 7 } 8 } 9 10 provider "bar" {} 11 12 resource "foo_resource" "resource" {} 13 14 resource "bar_resource" "resource" {}