more renames

This commit is contained in:
Elbaz 2023-08-21 15:01:03 +03:00
parent 985e81a1d0
commit b5cb9f6177
2 changed files with 6 additions and 6 deletions

View File

@ -414,16 +414,16 @@ func TestParseProviderSourceStr(t *testing.T) {
true,
},
// We forbid the opentf- prefix both because it's redundant to
// include "opentf" in a OpenTF provider name and because we use
// the longer prefix opentf-provider- to hint for users who might be
// We forbid the terraform- prefix both because it's redundant to
// include "terraform" in a Terraform provider name and because we use
// the longer prefix terraform-provider- to hint for users who might be
// accidentally using the git repository name or executable file name
// instead of the provider type.
"example.com/placeholderplaceholderplaceholder/opentf-provider-bad": {
"example.com/hashicorp/terraform-provider-bad": {
Provider{},
true,
},
"example.com/placeholderplaceholderplaceholder/opentf-bad": {
"example.com/hashicorp/terraform-bad": {
Provider{},
true,
},

View File

@ -64,5 +64,5 @@ type MaybeRelativePathErr struct {
}
func (e *MaybeRelativePathErr) Error() string {
return fmt.Sprintf("Terraform cannot detect a supported external module source type for %s", e.Addr)
return fmt.Sprintf("OpenTF cannot detect a supported external module source type for %s", e.Addr)
}