SAML Assertion to AWS STS Assumption
Assumes an STS role and produces usable session credentials for CLI tools from an intercepted SAML assertion
What is SAML Assertion to AWS STS Assumption?
SAML Assertion to AWS STS Assumption is a Chrome extension developed by terrafinity, and its main feature is "Assumes an STS role and produces usable session credentials for CLI tools from an intercepted SAML assertion".
Extension Screenshots
Download SAML Assertion to AWS STS Assumption Extension CRX File
Download SAML Assertion to AWS STS Assumption extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension allows you to extract credentials from a federated AWS console login so that you can use command line tools like terraform or AWSCLI. For organisations using their corporate directory to control access to AWS console, this extension is essential to allow you to securely access AWS APIs with time based sessions without risking storing usernames and passwords. Multiple accounts are supported, allowing you to use profile environment variables and command line parameters to access any account you are signed into. Usage is simple - just sign into the console through your corporate directory and your temporary credentials will be saved to disk ready for use.
Extension Basic Information
Name | SAML Assertion to AWS STS Assumption |
ID | ecjpilingnldmlmmdcbmalcfimomgief |
Official URL | https://chromewebstore.google.com/detail/saml-assertion-to-aws-sts/ecjpilingnldmlmmdcbmalcfimomgief |
Description | Assumes an STS role and produces usable session credentials for CLI tools from an intercepted SAML assertion |
File Size | 154 KB |
Installation Count | 399 |
Current Version | 1.0 |
Last Updated | 2020-11-11 |
Publish Date | 2020-11-11 |
Developer | terrafinity |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/terrafinity/samlauth-awssts-extension |
Help Page URL | https://github.com/terrafinity/samlauth-awssts-extension/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "terrafinity", "homepage_url": "https:\/\/github.com\/terrafinity\/samlauth-awssts-extension", "name": "SAML Assertion to AWS STS Assumption", "description": "Assumes an STS role and produces usable session credentials for CLI tools from an intercepted SAML assertion", "version": "1.0", "browser_action": { "default_icon": "resources\/images\/logo_32.png", "default_popup": "settings\/popup.html" }, "icons": { "16": "resources\/images\/logo_16.png", "32": "resources\/images\/logo_32.png", "48": "resources\/images\/logo_48.png", "128": "resources\/images\/logo_128.png" }, "background": { "page": "background\/background.html" }, "options_page": "settings\/settings.html", "permissions": [ "webRequest", "https:\/\/signin.aws.amazon.com\/saml", "storage", "downloads", "downloads.shelf" ] } |