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/configupgrade/testdata/valid/provider-addrs/input/provider-addrs.tf

17 lines
202 B

provider "test" {
alias = "baz"
}
resource "test_instance" "foo" {
provider = "test.baz"
}
module "bar" {
source = "./baz"
providers = {
test = "test.baz"
test.foo = "test"
}
}