Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #705 from pmccarthy/quickstart_prompt_text
Browse files Browse the repository at this point in the history
Fixing prompt text when asking for AWS credentials
  • Loading branch information
openshift-merge-bot[bot] authored Dec 5, 2023
2 parents bf81f57 + 07462be commit 5c622a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/.quickstartEnv
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ requiredENV() {

if [[ "$PROVIDER" == "aws" ]]; then
if [[ -z "${MGC_AWS_ACCESS_KEY_ID}" ]]; then
echo "Enter an AWS secret access key id for an Account where you have access to Route53:"
echo "Enter an AWS access key ID for an account where you have access to Route53:"
read MGC_AWS_ACCESS_KEY_ID </dev/tty
echo "export MGC_AWS_ACCESS_KEY_ID for future executions of the script to skip this step"
fi

if [[ -z "${MGC_AWS_SECRET_ACCESS_KEY}" ]]; then
echo "Enter your AWS secret access key for an Account where you have access to Route53:"
echo "Enter the corresponding AWS secret access key for the AWS access key ID entered above:"
read MGC_AWS_SECRET_ACCESS_KEY </dev/tty
echo "export MGC_AWS_SECRET_ACCESS_KEY for future executions of the script to skip this step"
fi
Expand Down

0 comments on commit 5c622a4

Please sign in to comment.