forked from extern/ohmyzsh
fix(aws): support MFA for profiles without role to assume (#9411)
Previously, the plugin only supported MFA for profiles that had a role to assume, specified in role_arn. Now, the plugin supports MFA for profiles without a role to assume. Closes #9408 * refactor(aws plugin): remove dependency on jq Previously, acp command relied on jq. Now that dependency has been removed, as well as some linter suggestions implemented.
This commit is contained in:
parent
852a44094a
commit
3e6ee85a16
@ -3,7 +3,7 @@
|
|||||||
This plugin provides completion support for [awscli](https://docs.aws.amazon.com/cli/latest/reference/index.html)
|
This plugin provides completion support for [awscli](https://docs.aws.amazon.com/cli/latest/reference/index.html)
|
||||||
and a few utilities to manage AWS profiles and display them in the prompt.
|
and a few utilities to manage AWS profiles and display them in the prompt.
|
||||||
|
|
||||||
To use it, make sure [jq](https://stedolan.github.io/jq/download/) is installed, and add `aws` to the plugins array in your zshrc file.
|
To use it, add `aws` to the plugins array in your zshrc file.
|
||||||
|
|
||||||
```zsh
|
```zsh
|
||||||
plugins=(... aws)
|
plugins=(... aws)
|
||||||
@ -40,6 +40,6 @@ plugins=(... aws)
|
|||||||
The plugin creates an `aws_prompt_info` function that you can use in your theme, which displays
|
The plugin creates an `aws_prompt_info` function that you can use in your theme, which displays
|
||||||
the current `$AWS_PROFILE`. It uses two variables to control how that is shown:
|
the current `$AWS_PROFILE`. It uses two variables to control how that is shown:
|
||||||
|
|
||||||
- ZSH_THEME_AWS_PREFIX: sets the prefix of the AWS_PROFILE. Defaults to `<aws:`.
|
* ZSH_THEME_AWS_PREFIX: sets the prefix of the AWS_PROFILE. Defaults to `<aws:`.
|
||||||
|
|
||||||
- ZSH_THEME_AWS_SUFFIX: sets the suffix of the AWS_PROFILE. Defaults to `>`.
|
* ZSH_THEME_AWS_SUFFIX: sets the suffix of the AWS_PROFILE. Defaults to `>`.
|
||||||
|
@ -39,60 +39,73 @@ function acp() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
local exists="$(aws configure get aws_access_key_id --profile $1)"
|
local aws_access_key_id="$(aws configure get aws_access_key_id --profile $1)"
|
||||||
local role_arn="$(aws configure get role_arn --profile $1)"
|
local aws_secret_access_key="$(aws configure get aws_secret_access_key --profile $1)"
|
||||||
local aws_access_key_id=""
|
local aws_session_token="$(aws configure get aws_session_token --profile $1)"
|
||||||
local aws_secret_access_key=""
|
|
||||||
local aws_session_token=""
|
|
||||||
if [[ -n $exists || -n $role_arn ]]; then
|
|
||||||
if [[ -n $role_arn ]]; then
|
|
||||||
local mfa_serial="$(aws configure get mfa_serial --profile $1)"
|
local mfa_serial="$(aws configure get mfa_serial --profile $1)"
|
||||||
local mfa_token=""
|
local role_arn="$(aws configure get role_arn --profile $1)"
|
||||||
|
|
||||||
|
# First, if the profile has MFA configured, lets get the token and session duration
|
||||||
local mfa_opt=""
|
local mfa_opt=""
|
||||||
|
|
||||||
if [[ -n $mfa_serial ]]; then
|
if [[ -n $mfa_serial ]]; then
|
||||||
|
local mfa_token=""
|
||||||
echo "Please enter your MFA token for $mfa_serial:"
|
echo "Please enter your MFA token for $mfa_serial:"
|
||||||
read mfa_token
|
read -r mfa_token
|
||||||
echo "Please enter the session duration in seconds (900-43200; default: 3600, which is the default maximum for a role):"
|
echo "Please enter the session duration in seconds (900-43200; default: 3600, which is the default maximum for a role):"
|
||||||
read sess_duration
|
read -r sess_duration
|
||||||
if [[ -z $sess_duration ]]; then
|
if [[ -z $sess_duration ]]; then
|
||||||
sess_duration="3600"
|
sess_duration="3600"
|
||||||
fi
|
fi
|
||||||
mfa_opt="--serial-number $mfa_serial --token-code $mfa_token --duration-seconds $sess_duration"
|
mfa_opt="--serial-number $mfa_serial --token-code $mfa_token --duration-seconds $sess_duration"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Now see whether we need to just MFA for the current role, or assume a different one
|
||||||
|
local credentials_output=""
|
||||||
|
if [[ -n $role_arn ]]; then
|
||||||
|
# Means we need to assume a specified role
|
||||||
|
|
||||||
|
# Check whether external_id is configured to use while assuming the role
|
||||||
local ext_id="$(aws configure get external_id --profile $1)"
|
local ext_id="$(aws configure get external_id --profile $1)"
|
||||||
local extid_opt=""
|
local extid_opt=""
|
||||||
if [[ -n $ext_id ]]; then
|
if [[ -n $ext_id ]]; then
|
||||||
extid_opt="--external-id $ext_id"
|
extid_opt="--external-id $ext_id"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Get source profile to use to assume role
|
||||||
local profile=$1
|
local profile=$1
|
||||||
local source_profile="$(aws configure get source_profile --profile $1)"
|
local source_profile="$(aws configure get source_profile --profile "$1")"
|
||||||
if [[ -n $source_profile ]]; then
|
if [[ -n $source_profile ]]; then
|
||||||
profile=$source_profile
|
profile=$source_profile
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Assuming role $role_arn using profile $profile"
|
echo "Assuming role $role_arn using profile $profile"
|
||||||
local assume_cmd=(aws sts assume-role "--profile=$profile" "--role-arn $role_arn" "--role-session-name "$profile"" "$mfa_opt" "$extid_opt")
|
local assume_cmd=(aws sts assume-role "--profile=$profile" "--role-arn $role_arn" "--role-session-name $profile" "$mfa_opt" "$extid_opt"
|
||||||
local JSON="$(eval ${assume_cmd[@]})"
|
"--query '[Credentials.AccessKeyId,Credentials.SecretAccessKey,Credentials.SessionToken]' --output text | tr '\t' '\n'")
|
||||||
|
credentials_output="$(eval "${assume_cmd[@]}")"
|
||||||
aws_access_key_id="$(echo $JSON | jq -r '.Credentials.AccessKeyId')"
|
elif [[ -n $mfa_opt ]]; then
|
||||||
aws_secret_access_key="$(echo $JSON | jq -r '.Credentials.SecretAccessKey')"
|
# Means we only need to do MFA
|
||||||
aws_session_token="$(echo $JSON | jq -r '.Credentials.SessionToken')"
|
echo "Obtaining session token for profile $profile"
|
||||||
else
|
local get_token_cmd=(aws sts get-session-token "--profile=$profile" "$mfa_opt"
|
||||||
aws_access_key_id="$(aws configure get aws_access_key_id --profile $1)"
|
"--query '[Credentials.AccessKeyId,Credentials.SecretAccessKey,Credentials.SessionToken]' --output text | tr '\t' '\n'")
|
||||||
aws_secret_access_key="$(aws configure get aws_secret_access_key --profile $1)"
|
credentials_output="$(eval "${get_token_cmd[@]}")"
|
||||||
aws_session_token="$(aws configure get aws_session_token --profile $1)"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ -n $credentials_output ]]; then
|
||||||
|
local credentials=("${(f)credentials_output}")
|
||||||
|
aws_access_key_id=${credentials[1]}
|
||||||
|
aws_secret_access_key=${credentials[2]}
|
||||||
|
aws_session_token=${credentials[3]}
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n $aws_access_key_id && -n $aws_secret_access_key ]]; then
|
||||||
export AWS_DEFAULT_PROFILE=$1
|
export AWS_DEFAULT_PROFILE=$1
|
||||||
export AWS_PROFILE=$1
|
export AWS_PROFILE=$1
|
||||||
export AWS_EB_PROFILE=$1
|
export AWS_EB_PROFILE=$1
|
||||||
export AWS_ACCESS_KEY_ID=$aws_access_key_id
|
export AWS_ACCESS_KEY_ID=$aws_access_key_id
|
||||||
export AWS_SECRET_ACCESS_KEY=$aws_secret_access_key
|
export AWS_SECRET_ACCESS_KEY=$aws_secret_access_key
|
||||||
[[ -z "$aws_session_token" ]] && unset AWS_SESSION_TOKEN || export AWS_SESSION_TOKEN=$aws_session_token
|
[[ -z "$aws_session_token" ]] && unset AWS_SESSION_TOKEN || export AWS_SESSION_TOKEN=$aws_session_token
|
||||||
|
echo "Switched to AWS Profile: $1"
|
||||||
echo "Switched to AWS Profile: $1";
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -120,8 +133,7 @@ function aws_profiles() {
|
|||||||
function _aws_profiles() {
|
function _aws_profiles() {
|
||||||
reply=($(aws_profiles))
|
reply=($(aws_profiles))
|
||||||
}
|
}
|
||||||
compctl -K _aws_profiles asp aws_change_access_key
|
compctl -K _aws_profiles asp acp aws_change_access_key
|
||||||
compctl -K _aws_profiles acp aws_change_access_key
|
|
||||||
|
|
||||||
# AWS prompt
|
# AWS prompt
|
||||||
function aws_prompt_info() {
|
function aws_prompt_info() {
|
||||||
|
Loading…
Reference in New Issue
Block a user