You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tool/wizard/flags/flags.go
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,11 @@ const (
18
18
)
19
19
20
20
varWizardFlags=map[string]cmdwrapper.Flag{
21
-
"isNonInteractiveWindowsMigration": {DefaultValue: "false", Description: "If true, it will use command line args to bypass the wizard. Default value is false."},
22
-
"isNonInteractiveLinuxMigration": {DefaultValue: "false", Description: "If true, it will do the linux config migration. Default value is false."},
23
-
"tracesOnly": {DefaultValue: "false", Description: "If true, only trace configuration will be generated"},
24
-
"useParameterStore": {DefaultValue: "false", Description: "If true, it will use the parameter store for the migrated config storage."},
25
-
"nonInteractiveXrayMigration": {DefaultValue: "false", Description: "If true, then this is part of non Interactive xray migration tool."},
21
+
"isNonInteractiveWindowsMigration": {DefaultValue: "false", Description: "If true, it will use command line args to bypass the wizard. Default value is false.", IsBool: true},
22
+
"isNonInteractiveLinuxMigration": {DefaultValue: "false", Description: "If true, it will do the linux config migration. Default value is false.", IsBool: true},
23
+
"tracesOnly": {DefaultValue: "false", Description: "If true, only trace configuration will be generated", IsBool: true},
24
+
"useParameterStore": {DefaultValue: "false", Description: "If true, it will use the parameter store for the migrated config storage.", IsBool: true},
25
+
"nonInteractiveXrayMigration": {DefaultValue: "false", Description: "If true, then this is part of non Interactive xray migration tool.", IsBool: true},
26
26
"configFilePath": {DefaultValue: "", Description: fmt.Sprintf("The path of the old config file. Default is %s on Windows or %s on Linux", DefaultFilePathWindowsConfiguration, DefaultFilePathLinuxConfiguration)},
27
27
"configOutputPath": {DefaultValue: "", Description: "Specifies where to write the configuration file generated by the wizard"},
28
28
"parameterStoreName": {DefaultValue: "", Description: "The parameter store name. Default is AmazonCloudWatch-windows"},
0 commit comments