github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/configs/testdata/config-diagnostics/required-alias/mod/main.tf (about) 1 terraform { 2 required_providers { 3 foo = { 4 source = "hashicorp/foo" 5 version = "1.0.0" 6 configuration_aliases = [ foo.bar ] 7 } 8 } 9 } 10 11 resource "foo_resource" "a" { 12 provider = foo.bar 13 }