Browse by type
[![][license img]][license] [![][cicd img]][cicd]
gimme-aws-creds is a CLI that utilizes an Okta IdP via SAML to acquire temporary AWS credentials via AWS STS.
Okta is a SAML identity provider (IdP), that can be easily set-up to do SSO to your AWS console. Okta does offer an OSS java CLI tool to obtain temporary AWS credentials, but I found it needs more information than the average Okta user would have and doesn't scale well if have more than one Okta App.
With gimme-aws-creds all you need to know is your username, password, Okta url and MFA token, if MFA is enabled. gimme-aws-creds gives you the option to select which Okta AWS application and role you want credentials for. Alternatively, you can pre-configure the app and role name by passing -c or editing the config file. This is all covered in the usage section.
Okta is a registered trademark of Okta, Inc. and this tool has no affiliation with or sponsorship by Okta, Inc.
Okta SAML integration to AWS using the AWS App
Python 3.7+
gimme-aws-creds depends on the ctap-keyring-device library for WebAuthn support. All of the released versions of ctap-keyring-device require winRT on Windows, which only works on Python 3.9 and lower and is no longer maintained. Until a version of ctap-keyring-device that supports winSDK (the replacement for winRT) is released to PyPi, or some other solution is found, WebAuthn support will not be available for people running Python 3.10+ on Windows.
Gimme-creds-lambda can be used as a proxy to the Okta APIs needed by gimme-aws-creds. This removes the requirement of an Okta API key. Gimme-aws-creds authenticates to gimme-creds-lambda using OpenID Connect and the lambda handles all interactions with the Okta APIs. Alternately, you can set the OKTA_API_KEY environment variable and the gimme_creds_server configuration value to 'internal' to call the Okta APIs directly from gimme-aws-creds.
This is a Python 3 project.
Install/Upgrade from PyPi:
pip3 install --upgrade gimme-aws-creds
OR
Install/Upgrade the latest gimme-aws-creds package direct from GitHub:
pip3 install --upgrade git+git://github.com/Nike-Inc/gimme-aws-creds.git
OR
Install the gimme-aws-creds package if you have already cloned the source:
python -m pip install .
OR
Use homebrew
brew install gimme-aws-creds
OR
Use with nix flakes
# flake.nix
# Use by running `nix develop`
{
description = "Shell example";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
inputs.gimme-aws-creds.url = "github:Nike-Inc/gimme-aws-creds";
outputs = {
self,
nixpkgs,
flake-utils,
gimme-aws-creds,
...
} @ inputs:
flake-utils.lib.eachDefaultSystem
(
system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
packages = [pkgs.bash gimme-aws-creds.defaultPackage.${system}];
};
}
);
}
OR
Use with original nix
# shell.nix
# Use by running `nix-shell`
{pkgs ? import <nixpkgs> {}, ...}:
with pkgs; let
gimme-src = fetchgit {
name = "gimme-aws-creds";
url = "https://github.com/Nike-Inc/gimme-aws-creds";
branchName = "master";
sha256 = "<replace>"; #nix-prefetch-url --unpack https://github.com/Nike-Inc/gimme-aws-creds/archive/master.tar.gz
};
gimme-aws-creds = import gimme-src;
in
mkShell rec {
name = "gimme-aws-creds";
buildInputs = [
bash
(gimme-aws-creds.default)
];
}
OR
Build the docker image locally:
docker build -t gimme-aws-creds .
To make it easier you can also create an alias for the gimme-aws-creds command with docker:
# make sure you have the "~/.okta_aws_login_config" locally first!
touch ~/.okta_aws_login_config && \
alias gimme-aws-creds="docker run -it --rm \
-v ~/.aws/credentials:/root/.aws/credentials \
-v ~/.okta_aws_login_config:/root/.okta_aws_login_config \
gimme-aws-creds"
With this config, you will be able to run further commands seamlessly!
If you are using Bash or Zsh, you can add autocompletion for the gimme-aws-creds commandline options and profile names. To add the autocomplete config, add the following to the end of your .bashrc or .zshrc:
.bashrc
INSTALL_DIR=$(dirname $(which gimme-aws-creds))
source ${INSTALL_DIR}/gimme-aws-creds-autocomplete.sh"
.zshrc
INSTALL_DIR=$(dirname $(which gimme-aws-creds))
autoload bashcompinit
bashcompinit
source ${INSTALL_DIR}/gimme-aws-creds-autocomplete.sh
There are two options for using gimme-aws-creds with an OIE domain: * Device Authorization Flow * Forcing the use of the Okta Classic login flow
This is the recommended method for authentication with OIE. It matches the flow used by Okta's AWS client. When using gimme-aws-creds with the Device Authorization flow, you will authenticate using your browser. Storing credentials in keychain or passing MFA codes through the command-line is NOT POSSIBLE.
To use gimme-aws-creds with an Okta Identity Engine (OIE) domain, you must create a new OIDC Native Application and connect it to your AWS integration app(s).
The OIDC Native Application requires Grant Types Authorization Code, Device Authorization , and Token Exchange. These settings are in the Okta Admin UI at Applications > [the OIDC app] > General Settings > Grant type.
The pairing with the AWS Federation Application is achieved in the Fed app's Sign On Settings. These settings are in the Okta Admin UI at Applications > [the AWS Fed app] > Sign On. Make sure to set the Allowed Web SSO Client value to the Client ID of the OIDC Native Application. Repeat that setting for each AWS application you want to access with gimme-aws-creds.
Finally, set the Client ID in gimme-aws-creds (gimme-aws-creds --action-configure or update the client_id parameter in your config file)
Make sure to use the same authentication policy for both the AWS Federation Application and the OIDC application ( or at least use equivalent policy rules for both). If not, you'll receive a 400 Bad Request response when requesting the Web SSO token.
The login flow used in Okta Classic currently still works with Okta Identity Engine domains, BUT there are a couple caveats:
* The Okta classic flow passes the stateToken parameter when requesting "step-up" authentication. This capability was removed in OIE, so if the authentication policy on your AWS app(s) requires MFA but the Global Session Policy does not (or if a higher level of MFA factor is required to access AWS), you cannot authenticate using the classic login flow.
* MFA using Okta Verify is only supported on mobile devices. Okta Verify on macOS/Windows is not supported.
* Passwordless authentication and endpoint security checks are not supported.
To set-up the configuration run:
gimme-aws-creds --action-configure
You can also set up different Okta configuration profiles, this is useful if you have multiple Okta accounts or environments you need credentials for. You can use the configuration wizard or run:
gimme-aws-creds --action-configure --profile profileName
A configuration wizard will prompt you to enter the necessary configuration parameters for the tool to run, the only one that is required is the okta_org_url. The configuration file is written to ~/.okta_aws_login_config, but you can change the location with the environment variable OKTA_CONFIG.
https://companyname.okta.com.OKTA_API_KEY environment variable required)~/.aws/credentials otherwise it will be written to stdout.role will use the name component of the role arn as the profile name. i.e. arn:aws:iam::123456789012:role/okta-1234-role becomes section [okta-1234-role] in the aws credentials fileacc will use the account number (or alias if resolve_aws_alias is set to y) as the profile name. i.e. arn:aws:iam::123456789012:role/okta-1234-role becomes section [arn:aws:iam::123456789012] or if resolve_aws_alias [okta-1234-role] in the aws credentials file.acc-role will use the name component of the role arn prepended with account number (or alias if resolve_aws_alias is set to y) to avoid collisions, i.e. arn:aws:iam::123456789012:role/okta-1234-role becomes section [123456789012-okta-1234-role], or if resolve_aws_alias [okta-1234-role] in the aws credentials filedefault then the temp creds will be stored in the default profiledefault is selected it will be overwritten multiple times and last role wins. The same happens when role is selected and you have many accounts with the same role names. Consider using acc-role if this happens.OKTA_MFA_CODE or --mfa-code if set, or prompts user for passcode(OTP).Duo Push (default)PasscodePhone Call-r or --resolve parametery: <acct>-/some/path/administrator. If n: <acct>-administrator-m or --remember-devicejson , export or windows, determines default credential output format, can be also specified by --output-format FORMAT and -o FORMAT.The config file follows a configfile format. By default, it is located in $HOME/.okta_aws_login_config
Example file:
[myprofile]
client_id = myclient_id
Configurations can inherit from other configurations to share common configuration parameters.
[my-base-profile]
client_id = myclient_id
[myprofile]
inherits = my-base-profile
aws_rolename = my-role
If you are not using gimme-creds-lambda nor using appurl settings, make sure you set the OKTA_API_KEY environment variable.
After running --action-configure, just run gimme-aws-creds. You will be prompted for the necessary information.
```bash $ ./gimme-aws-creds Username: user@domain.com Password for
$ claude mcp add gimme-aws-creds \
-- python -m otcore.mcp_server <graph>