Update docstring for ignore-remote-version
Update docstring for ignore-remote-version to be more accurate, as it's not whether the versions differ, but if they are incompatible
This commit is contained in:
parent
1a16ce8c4e
commit
c1ede28a15
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue