Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
4f4985fd
Commit
4f4985fd
authored
Jul 30, 2014
by
Cristian Măgherușan-Stanciu
Committed by
Marc Cornellà
Mar 24, 2019
Browse files
aws: added an alias for changing the AWS access key set on a profile
parent
8cbdd795
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/aws/aws.plugin.zsh
View file @
4f4985fd
...
...
@@ -14,10 +14,25 @@ function asp {
fi
}
function
aws_change_access_key
{
if
[[
"x
$1
"
==
"x"
]]
then
echo
"usage:
$0
<profile.name>"
return
1
else
echo
"Insert the credentials when asked."
asp
$1
aws iam create-access-key
aws configure
--profile
$1
echo
"You can now safely delete the old access key running 'aws iam delete-access-key --access-key-id ID'"
echo
"Your current keys are:"
aws iam list-access-keys
fi
}
function
aws_profiles
{
reply
=(
$(
grep
'\[profile'
"
${
AWS_CONFIG_FILE
:-
$HOME
/.aws/config
}
"
|sed
-e
's/.*profile \([a-zA-Z0-9_\.-]*\).*/\1/'
)
)
}
compctl
-K
aws_profiles asp
compctl
-K
aws_profiles asp
aws_change_access_key
# AWS prompt
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment