From c769d5b3521ce860c3d2d026c95cc9a7e1d8d3fb Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Wed, 29 Jun 2022 19:36:04 +0100 Subject: [PATCH] updated jenkins_cred_set_secret_text.sh --- jenkins_cred_set_secret_text.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/jenkins_cred_set_secret_text.sh b/jenkins_cred_set_secret_text.sh index 1bf2db2e..006fc961 100755 --- a/jenkins_cred_set_secret_text.sh +++ b/jenkins_cred_set_secret_text.sh @@ -40,9 +40,9 @@ Uses the adjacent jenkins_api.sh - see there for authentication details Examples: - # create a credential with id 'aws-access-key-id', and text 'AKIA...': + # create a credential with id 'aws-access-key-id', and text 'AKIA...': - ${0##*/} aws-access-key-id AKIA... + ${0##*/} aws-access-key-id AKIA... # with a description, leaving the store and domain as the default global one: @@ -52,10 +52,10 @@ Examples: # export JENKINS_SECRET_STORE and JENKINS_SECRET_DOMAIN if using stdin but not using system global store - echo 'AWS_ACCESS_KEY_ID=AKIA...' | ${0##*/} - echo 'AWS_SECRET_ACCESS_KEY=...' | ${0##*/} + echo 'AWS_ACCESS_KEY_ID=AKIA...' | ${0##*/} + echo 'AWS_SECRET_ACCESS_KEY=...' | ${0##*/} - # using aws_csv_creds.sh to load the credentials from a standard AWS credential download: + # using aws_csv_creds.sh to load the credentials from a standard AWS credential download: aws_csv_creds.sh ~/.aws/keys/downloaded_access_key_creds.csv | ${0##*/} "