make import command help a little clearer (#5965)

This commit is contained in:
Lee Briggs 2020-12-16 12:45:11 -08:00 committed by GitHub
parent 9b6a7a4397
commit de87d3cd88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -505,9 +505,9 @@ func newImportCmd() *cobra.Command {
}
cmd.PersistentFlags().StringVar(
&parentSpec, "parent", "", "The name and URN of the parent resource in the format name=urn")
&parentSpec, "parent", "", "The name and URN of the parent resource in the format name=urn, where name is the variable name of the parent resource")
cmd.PersistentFlags().StringVar(
&providerSpec, "provider", "", "The name and URN of the provider to use for the import in the format name=urn")
&providerSpec, "provider", "", "The name and URN of the provider to use for the import in the format name=urn, where name is the variable name for the provider resource")
cmd.PersistentFlags().StringVarP(
&importFilePath, "file", "f", "", "The path to a JSON-encoded file containing a list of resources to import")
cmd.PersistentFlags().StringVarP(