github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/configs/testdata/invalid-files/provider-localname-normalization.tf (about) 1 terraform { 2 required_providers { 3 test = { 4 source = "mycorp/test" 5 } 6 } 7 } 8 9 provider "TEST" { 10 11 } 12 13 resource test_resource "test" { 14 // this resource is (implicitly) provided by "mycorp/test" 15 } 16 17 resource test_resource "TEST" { 18 // this resource is (explicitly) provided by "hashicorp/test" 19 provider = TEST 20 }