idpawssamlinterceptor
This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds
idpawssamlinterceptor क्या है?
idpawssamlinterceptor bob2build.2020 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में idpawssamlinterceptor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A chrome extention to intercept Saml Assersion passed from IDP (Identity Provider like OKTA) to AWS. The SAML assertion can be used to generate CLI credentials which can be used in other tools such as awscli, terraform etc. This chrome extention, listens for requests to signin requests to signin.aws.amazon.com and holds the SAML assertion metadata in memory. The extension provides a popup to generate CLI credentials and download them. This tool is inspired from * https://github.com/prolane/samltoawsstskeys * https://aws.amazon.com/blogs/security/how-to-implement-federated-api-and-cli-access-using-saml-2-0-and-ad-fs/
एक्सटेंशन की मूल जानकारी
नाम | idpawssamlinterceptor |
ID | albcpjbmlieijoffjiklpmlppfaacegn |
आधिकारिक URL | https://chromewebstore.google.com/detail/idpawssamlinterceptor/albcpjbmlieijoffjiklpmlppfaacegn |
विवरण | This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds |
फ़ाइल का आकार | 1.24 MB |
स्थापना संख्या | 147 |
वर्तमान संस्करण | 0.1.1 |
अंतिम अपडेट | 2019-02-12 |
प्रकाशन तिथि | 2019-02-12 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | bob2build.2020 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/bob2build/idpawssamlinterceptor-chromextension |
सहायता पृष्ठ URL | https://github.com/bob2build/idpawssamlinterceptor-chromextension |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "idpawssamlinterceptor", "description": "This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds", "version": "0.1.1", "permissions": [ "webRequest", "*:\/\/signin.aws.amazon.com\/*", "*:\/\/informatica.okta.com\/*", "background", "downloads" ], "browser_action": { "default_popup": "index.html", "default_title": "IDP AWS SAML Interceptor" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "app\/background.js" ] }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" } } |