SAML Assertion to AWS STS Assumption
Assumes an STS role and produces usable session credentials for CLI tools from an intercepted SAML assertion
SAML Assertion to AWS STS Assumptionคืออะไร?
SAML Assertion to AWS STS Assumption เป็นส่วนขยายของ Chrome ที่พัฒนาโดย terrafinity และคุณลักษณะหลักของมันคือ "Assumes an STS role and produces usable session credentials for CLI tools from an intercepted SAML assertion"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SAML Assertion to AWS STS Assumption
ดาวน์โหลดไฟล์ส่วนขยาย SAML Assertion to AWS STS Assumption ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SAML Assertion to AWS STS Assumption |
ID | ecjpilingnldmlmmdcbmalcfimomgief |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/saml-assertion-to-aws-sts/ecjpilingnldmlmmdcbmalcfimomgief |
คำอธิบาย | Assumes an STS role and produces usable session credentials for CLI tools from an intercepted SAML assertion |
ขนาดไฟล์ | 154 KB |
จำนวนการติดตั้ง | 399 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2020-11-11 |
วันที่เผยแพร่ | 2020-11-11 |
ผู้พัฒนา | terrafinity |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/terrafinity/samlauth-awssts-extension |
URL หน้าช่วยเหลือ | https://github.com/terrafinity/samlauth-awssts-extension/issues |
ภาษาที่รองรับ | 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" ] } |