Update --snapshot-tag arg to be string array, not string slice (i.e. values will be passed raw, not parsed as a CSV). Closes #2597

This commit is contained in:
kaidaguerre
2022-10-26 18:00:58 +01:00
committed by GitHub
parent 8bfe543745
commit 7188101a80
3 changed files with 3 additions and 3 deletions

View File

@@ -87,7 +87,7 @@ Examples:
AddBoolFlag(constants.ArgInput, "", true, "Enable interactive prompts").
AddBoolFlag(constants.ArgSnapshot, "", false, "Create snapshot in Steampipe Cloud with the default (workspace) visibility.").
AddBoolFlag(constants.ArgShare, "", false, "Create snapshot in Steampipe Cloud with 'anyone_with_link' visibility.").
AddStringSliceFlag(constants.ArgSnapshotTag, "", nil, "Specify tags to set on the snapshot").
AddStringArrayFlag(constants.ArgSnapshotTag, "", nil, "Specify tags to set on the snapshot").
AddStringSliceFlag(constants.ArgExport, "", nil, "Export output to a snapshot file").
AddStringFlag(constants.ArgSnapshotLocation, "", "", "The cloud workspace... ").
AddBoolFlag(constants.ArgProgress, "", true, "Display snapshot upload status").