/aws2-wrap

Simple script to export current AWS SSO credentials or run a sub-process with them

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Quality Gate Status

aws2-wrap

This is a simple script to facilitate exporting the current AWS SSO credentials or runing a command with them. It is installed with pip.

Run a command using AWS SSO credentials

aws2-wrap --profile <awsprofilename> --exec "<command>"

Note that you must enclose the command to be executed within double-quotes in order to ensure that any parameters are passed to that sub-command and not to aws2-wrap.

For example:

aws2-wrap --profile MySSOProfile --exec "terraform"

Export the credentials

There may be circumstances when it is easier/better to set the appropriate environment variables so that they can be re-used by any aws command.

Since the script cannot directly set the environment variables in the calling shell process, it is necessary to use the following syntax:

eval "$(aws2-wrap --profile <awsprofilename --export)"

For example:

eval "$(aws2-wrap --profile MySSOProfile --export)"