Skip to content

Commit

Permalink
Removed extra : from prompt copies
Browse files Browse the repository at this point in the history
  • Loading branch information
Shah Newaz Khan committed Nov 10, 2019
1 parent 4b1936b commit 54b3eee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/generate/kubernetes/generate.go
Expand Up @@ -193,7 +193,7 @@ func promptCredentials() Secrets {
}

accessKeyIDPrompt := promptui.Prompt{
Label: "Aws Access Key ID: ",
Label: "Aws Access Key ID ",
Validate: validateAKID,
}

Expand All @@ -205,7 +205,7 @@ func promptCredentials() Secrets {
}

secretAccessKeyPrompt := promptui.Prompt{
Label: "Aws Secret Access Key: ",
Label: "Aws Secret Access Key ",
Validate: validateSAK,
Mask: '*',
}
Expand All @@ -218,7 +218,7 @@ func promptCredentials() Secrets {
}

regionPrompt := promptui.Select{
Label: "Select AWS Region: ",
Label: "Select AWS Region ",
Items: []string{"us-west-1", "us-west-2", "us-east-1", "us-east-2", "ca-central-1",
"eu-central-1", "eu-west-1", "ap-east-1", "ap-south-1"},
}
Expand Down

0 comments on commit 54b3eee

Please sign in to comment.