You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/configs/testdata/valid-modules/override-resource-provider/base.tf

18 lines
310 B

terraform {
required_providers {
foo-test = {
source = "foo/test"
}
bar-test = {
source = "bar/test"
}
}
}
resource "test_instance" "explicit" {
provider = foo-test
}
// the provider for this resource should default to "hashicorp/test"
resource "test_instance" "default" {}