Skip to content

Commit

Permalink
Update s3creds.sh
Browse files Browse the repository at this point in the history
update with example cli prompt
  • Loading branch information
btylerburton authored May 20, 2024
1 parent 998addf commit b009ebf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion s3creds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ echo 'Run the following lines at your shell prompt to put the S3 bucket credenti
echo export AWS_ACCESS_KEY_ID=`echo "${S3_CREDENTIALS}" | jq -r .credentials.access_key_id`
echo export AWS_SECRET_ACCESS_KEY=`echo "${S3_CREDENTIALS}" | jq -r .credentials.secret_access_key`
echo export BUCKET_NAME=`echo "${S3_CREDENTIALS}" | jq -r .credentials.bucket`
echo export AWS_DEFAULT_REGION=`echo "${S3_CREDENTIALS}" | jq -r '.credentials.region'`
echo export AWS_DEFAULT_REGION=`echo "${S3_CREDENTIALS}" | jq -r '.credentials.region'`

# for i in `ls ~/Desktop/s3-uploads`: do aws s3 cp $i s3://${BUCKET_NAME}; done;

0 comments on commit b009ebf

Please sign in to comment.