@@ -58,7 +58,7 @@ func getPromptValidation(defaults *CliConfig) *cr.PromptValidation {
58
58
& cr.PromptItemValidation {
59
59
StructField : "CortexURL" ,
60
60
PromptOpts : & cr.PromptOptions {
61
- Prompt : "\n Cortex operator endpoint" ,
61
+ Prompt : "Enter Cortex operator endpoint" ,
62
62
},
63
63
StringValidation : cr .GetURLValidation (& cr.URLValidation {
64
64
Required : true ,
@@ -68,7 +68,7 @@ func getPromptValidation(defaults *CliConfig) *cr.PromptValidation {
68
68
& cr.PromptItemValidation {
69
69
StructField : "AWSAccessKeyID" ,
70
70
PromptOpts : & cr.PromptOptions {
71
- Prompt : "AWS Access Key ID" ,
71
+ Prompt : "Enter AWS Access Key ID" ,
72
72
},
73
73
StringValidation : & cr.StringValidation {
74
74
Required : true ,
@@ -78,7 +78,7 @@ func getPromptValidation(defaults *CliConfig) *cr.PromptValidation {
78
78
& cr.PromptItemValidation {
79
79
StructField : "AWSSecretAccessKey" ,
80
80
PromptOpts : & cr.PromptOptions {
81
- Prompt : "AWS Secret Access Key" ,
81
+ Prompt : "Enter AWS Secret Access Key" ,
82
82
MaskDefault : true ,
83
83
HideTyping : true ,
84
84
},
@@ -177,7 +177,7 @@ func configure() *CliConfig {
177
177
defaults := getDefaults ()
178
178
179
179
cachedCliConfig = & CliConfig {}
180
- fmt .Println ("\n Environment: " + flagEnv )
180
+ fmt .Println ("\n Environment: " + flagEnv + " \n " )
181
181
err := cr .ReadPrompt (cachedCliConfig , getPromptValidation (defaults ))
182
182
if err != nil {
183
183
errors .Exit (err )
0 commit comments