|
|
|
|
@ -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)
|
|
|
|
|
|