mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
alters
This commit is contained in:
parent
93ccbd82f5
commit
4ebaf33983
@ -412,7 +412,7 @@ func (p *Provider) ImportState(
|
|||||||
return nil, fmt.Errorf(
|
return nil, fmt.Errorf(
|
||||||
"nil entry in ImportState results. This is always a bug with\n" +
|
"nil entry in ImportState results. This is always a bug with\n" +
|
||||||
"the resource that is being imported. Please report this as\n" +
|
"the resource that is being imported. Please report this as\n" +
|
||||||
"a bug to Terraform.")
|
"a bug to OpenTF.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -225,15 +225,15 @@ func ProviderHasDataSource(p ResourceProvider, n string) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const errPluginInit = `
|
const errPluginInit = `
|
||||||
Plugin reinitialization required. Please run "terraform init".
|
Plugin reinitialization required. Please run "opentf init".
|
||||||
|
|
||||||
Plugins are external binaries that Terraform uses to access and manipulate
|
Plugins are external binaries that OpenTF uses to access and manipulate
|
||||||
resources. The configuration provided requires plugins which can't be located,
|
resources. The configuration provided requires plugins which can't be located,
|
||||||
don't satisfy the version constraints, or are otherwise incompatible.
|
don't satisfy the version constraints, or are otherwise incompatible.
|
||||||
|
|
||||||
Terraform automatically discovers provider requirements from your
|
OpenTF automatically discovers provider requirements from your
|
||||||
configuration, including providers used in child modules. To see the
|
configuration, including providers used in child modules. To see the
|
||||||
requirements and constraints, run "terraform providers".
|
requirements and constraints, run "opentf providers".
|
||||||
|
|
||||||
%s
|
%s
|
||||||
`
|
`
|
||||||
|
@ -1922,10 +1922,10 @@ func testForV0State(buf *bufio.Reader) error {
|
|||||||
return fmt.Errorf("Failed to check for magic bytes: %v", err)
|
return fmt.Errorf("Failed to check for magic bytes: %v", err)
|
||||||
}
|
}
|
||||||
if string(start) == "tfstate" {
|
if string(start) == "tfstate" {
|
||||||
return fmt.Errorf("Terraform 0.7 no longer supports upgrading the binary state\n" +
|
return fmt.Errorf("OpenTF 0.7 no longer supports upgrading the binary state\n" +
|
||||||
"format which was used prior to Terraform 0.3. Please upgrade\n" +
|
"format which was used prior to OpenTF 0.3. Please upgrade\n" +
|
||||||
"this state file using Terraform 0.6.16 prior to using it with\n" +
|
"this state file using OpenTF 0.6.16 prior to using it with\n" +
|
||||||
"Terraform 0.7.")
|
"OpenTF 0.7.")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
@ -2011,7 +2011,7 @@ func ReadState(src io.Reader) (*State, error) {
|
|||||||
|
|
||||||
result = v3State
|
result = v3State
|
||||||
default:
|
default:
|
||||||
return nil, fmt.Errorf("Terraform %s does not support state version %d, please update.",
|
return nil, fmt.Errorf("OpenTF %s does not support state version %d, please update.",
|
||||||
tfversion.SemVer.String(), versionIdentifier.Version)
|
tfversion.SemVer.String(), versionIdentifier.Version)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2055,7 +2055,7 @@ func ReadStateV2(jsonBytes []byte) (*State, error) {
|
|||||||
// Check the version, this to ensure we don't read a future
|
// Check the version, this to ensure we don't read a future
|
||||||
// version that we don't understand
|
// version that we don't understand
|
||||||
if state.Version > StateVersion {
|
if state.Version > StateVersion {
|
||||||
return nil, fmt.Errorf("Terraform %s does not support state version %d, please update.",
|
return nil, fmt.Errorf("OpenTF %s does not support state version %d, please update.",
|
||||||
tfversion.SemVer.String(), state.Version)
|
tfversion.SemVer.String(), state.Version)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2064,9 +2064,9 @@ func ReadStateV2(jsonBytes []byte) (*State, error) {
|
|||||||
if _, err := version.NewVersion(state.TFVersion); err != nil {
|
if _, err := version.NewVersion(state.TFVersion); err != nil {
|
||||||
return nil, fmt.Errorf(
|
return nil, fmt.Errorf(
|
||||||
"State contains invalid version: %s\n\n"+
|
"State contains invalid version: %s\n\n"+
|
||||||
"Terraform validates the version format prior to writing it. This\n"+
|
"OpenTF validates the version format prior to writing it. This\n"+
|
||||||
"means that this is invalid of the state becoming corrupted through\n"+
|
"means that this is invalid of the state becoming corrupted through\n"+
|
||||||
"some external means. Please manually modify the Terraform version\n"+
|
"some external means. Please manually modify the OpenTF version\n"+
|
||||||
"field to be a proper semantic version.",
|
"field to be a proper semantic version.",
|
||||||
state.TFVersion)
|
state.TFVersion)
|
||||||
}
|
}
|
||||||
@ -2090,7 +2090,7 @@ func ReadStateV3(jsonBytes []byte) (*State, error) {
|
|||||||
// Check the version, this to ensure we don't read a future
|
// Check the version, this to ensure we don't read a future
|
||||||
// version that we don't understand
|
// version that we don't understand
|
||||||
if state.Version > StateVersion {
|
if state.Version > StateVersion {
|
||||||
return nil, fmt.Errorf("Terraform %s does not support state version %d, please update.",
|
return nil, fmt.Errorf("OpenTF %s does not support state version %d, please update.",
|
||||||
tfversion.SemVer.String(), state.Version)
|
tfversion.SemVer.String(), state.Version)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2099,9 +2099,9 @@ func ReadStateV3(jsonBytes []byte) (*State, error) {
|
|||||||
if _, err := version.NewVersion(state.TFVersion); err != nil {
|
if _, err := version.NewVersion(state.TFVersion); err != nil {
|
||||||
return nil, fmt.Errorf(
|
return nil, fmt.Errorf(
|
||||||
"State contains invalid version: %s\n\n"+
|
"State contains invalid version: %s\n\n"+
|
||||||
"Terraform validates the version format prior to writing it. This\n"+
|
"OpenTF validates the version format prior to writing it. This\n"+
|
||||||
"means that this is invalid of the state becoming corrupted through\n"+
|
"means that this is invalid of the state becoming corrupted through\n"+
|
||||||
"some external means. Please manually modify the Terraform version\n"+
|
"some external means. Please manually modify the OpenTF version\n"+
|
||||||
"field to be a proper semantic version.",
|
"field to be a proper semantic version.",
|
||||||
state.TFVersion)
|
state.TFVersion)
|
||||||
}
|
}
|
||||||
@ -2153,7 +2153,7 @@ func WriteState(d *State, dst io.Writer) error {
|
|||||||
if _, err := version.NewVersion(d.TFVersion); err != nil {
|
if _, err := version.NewVersion(d.TFVersion); err != nil {
|
||||||
return fmt.Errorf(
|
return fmt.Errorf(
|
||||||
"Error writing state, invalid version: %s\n\n"+
|
"Error writing state, invalid version: %s\n\n"+
|
||||||
"The Terraform version when writing the state must be a semantic\n"+
|
"The OpenTF version when writing the state must be a semantic\n"+
|
||||||
"version.",
|
"version.",
|
||||||
d.TFVersion)
|
d.TFVersion)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user