-
-
Save todgru/0d1b39c300d3c7cf3733ec9e7943dfb4 to your computer and use it in GitHub Desktop.
Parse aws credentials file in bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
INI_FILE=~/.aws/credentials | |
while IFS=' = ' read key value | |
do | |
if [[ $key == \[*] ]]; then | |
section=$key | |
elif [[ $value ]] && [[ $section == '[default]' ]]; then | |
if [[ $key == 'aws_access_key_id' ]]; then | |
AWS_ACCESS_KEY_ID=$value | |
elif [[ $key == 'aws_secret_access_key' ]]; then | |
AWS_SECRET_ACCESS_KEY=$value | |
fi | |
fi | |
done < $INI_FILE | |
echo $AWS_ACCESS_KEY_ID | |
echo $AWS_SECRET_ACCESS_KEY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If available and depending on use case, the
aws
cli tool can retrieve the values,aws configure get varname [--profile profile-name]