idpawssamlinterceptor
This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds
idpawssamlinterceptorคืออะไร?
idpawssamlinterceptor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bob2build.2020 และคุณลักษณะหลักของมันคือ "This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย idpawssamlinterceptor
ดาวน์โหลดไฟล์ส่วนขยาย idpawssamlinterceptor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |