diff --git a/command/import.go b/command/import.go index d58960d0b..275349408 100644 --- a/command/import.go +++ b/command/import.go @@ -35,7 +35,7 @@ func (c *ImportCommand) Run(args []string) int { args = c.Meta.process(args) cmdFlags := c.Meta.extendedFlagSet("import") - cmdFlags.BoolVar(&c.ignoreRemoteVersion, "ignore-remote-version", false, "continue even if remote and local Terraform versions differ") + cmdFlags.BoolVar(&c.ignoreRemoteVersion, "ignore-remote-version", false, "continue even if remote and local Terraform versions are incompatible") cmdFlags.IntVar(&c.Meta.parallelism, "parallelism", DefaultParallelism, "parallelism") cmdFlags.StringVar(&c.Meta.statePath, "state", "", "path") cmdFlags.StringVar(&c.Meta.stateOutPath, "state-out", "", "path") @@ -331,8 +331,8 @@ Options: files are present, they will be automatically loaded. -ignore-remote-version Continue even if remote and local Terraform versions - differ. This may result in an unusable workspace, and - should be used with extreme caution. + are incompatible. This may result in an unusable + workspace, and should be used with extreme caution. ` return strings.TrimSpace(helpText) diff --git a/command/meta.go b/command/meta.go index 81c3e298c..c7f98dd4b 100644 --- a/command/meta.go +++ b/command/meta.go @@ -512,7 +512,7 @@ func (m *Meta) defaultFlagSet(n string) *flag.FlagSet { func (m *Meta) ignoreRemoteVersionFlagSet(n string) *flag.FlagSet { f := m.defaultFlagSet(n) - f.BoolVar(&m.ignoreRemoteVersion, "ignore-remote-version", false, "continue even if remote and local Terraform versions differ") + f.BoolVar(&m.ignoreRemoteVersion, "ignore-remote-version", false, "continue even if remote and local Terraform versions are incompatible") return f } diff --git a/command/state_mv.go b/command/state_mv.go index 4520d421f..451034199 100644 --- a/command/state_mv.go +++ b/command/state_mv.go @@ -492,8 +492,8 @@ Options: used. This can be a new or existing path. -ignore-remote-version Continue even if remote and local Terraform versions - differ. This may result in an unusable workspace, and - should be used with extreme caution. + are incompatible. This may result in an unusable + workspace, and should be used with extreme caution. ` return strings.TrimSpace(helpText) diff --git a/command/state_replace_provider.go b/command/state_replace_provider.go index eb7aa7c27..750a90582 100644 --- a/command/state_replace_provider.go +++ b/command/state_replace_provider.go @@ -187,8 +187,8 @@ Options: configured backend, or "terraform.tfstate" -ignore-remote-version Continue even if remote and local Terraform versions - differ. This may result in an unusable workspace, and - should be used with extreme caution. + are incompatible. This may result in an unusable + workspace, and should be used with extreme caution. ` return strings.TrimSpace(helpText) diff --git a/command/state_rm.go b/command/state_rm.go index e8b0dee62..14160bece 100644 --- a/command/state_rm.go +++ b/command/state_rm.go @@ -160,8 +160,8 @@ Options: current workspace state. -ignore-remote-version Continue even if remote and local Terraform versions - differ. This may result in an unusable workspace, and - should be used with extreme caution. + are incompatible. This may result in an unusable + workspace, and should be used with extreme caution. ` return strings.TrimSpace(helpText) diff --git a/command/taint.go b/command/taint.go index 6bdf4037c..443831112 100644 --- a/command/taint.go +++ b/command/taint.go @@ -245,8 +245,8 @@ Options: "-state" path will be used. -ignore-remote-version Continue even if remote and local Terraform versions - differ. This may result in an unusable workspace, and - should be used with extreme caution. + are incompatible. This may result in an unusable + workspace, and should be used with extreme caution. ` return strings.TrimSpace(helpText) diff --git a/command/untaint.go b/command/untaint.go index f593075e7..bbc93294d 100644 --- a/command/untaint.go +++ b/command/untaint.go @@ -210,8 +210,8 @@ Options: "-state" path will be used. -ignore-remote-version Continue even if remote and local Terraform versions - differ. This may result in an unusable workspace, and - should be used with extreme caution. + are incompatible. This may result in an unusable + workspace, and should be used with extreme caution. ` return strings.TrimSpace(helpText)