SAML to AWS STS Keys Conversion
Generates file with AWS STS Keys after logging in to AWS webconsole using SSO (SAML 2.0). It leverages 'assumeRoleWithSAML' API.
SAML to AWS STS Keys Conversionคืออะไร?
SAML to AWS STS Keys Conversion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย prolane.org และคุณลักษณะหลักของมันคือ "Generates file with AWS STS Keys after logging in to AWS webconsole using SSO (SAML 2.0). It leverages 'assumeRoleWithSAML' API."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SAML to AWS STS Keys Conversion
ดาวน์โหลดไฟล์ส่วนขยาย SAML to AWS STS Keys Conversion ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Google Chrome Extension which converts a SAML 2.0 assertion to AWS STS Keys (temporary credentials -> AccessKeyId, SecretAccessKey and SessionToken). ### Why this Chrome Extension? ### If you don't have any user administration setup within AWS Identity & Access Management (IAM) but instead rely on your corporate user directory, i.e. Microsoft Active Directory. Your company uses a SAML 2.0 Identity Provider (IDP) to log in to the AWS Web Management Console (Single Sign On). Then this Chrome Estension if for you! You run into trouble as soon as you would like to execute some fancy scripts from your computer which calls the AWS API's. When sending a request to the AWS API's you need credentials, meaning an AccessKey and SecretKey. You can easily generate these keys for each user in AWS IAM. However, since you don't have any users in AWS IAM and don't want to create users just for the sake of having an AccessKey and SecretKey you are screwed. But there is a way to get temporary credentials specifically for your corporate identity. The Security Token Service (STS) from AWS provides an API action assumeRoleWithSAML. Using the SAML Assertion given by your IDP the Chrome Extension will call this API action to fetch temporary credentials. (AccessKeyId, SecretAccessKey and SessionToken). This way there is no need to create some sort of anonymous user in AWS IAM used for executing scripts. This would be a real security nightmare, since it won't be possible to audit who did what. This Chrome Extension however will make it super easy for you to just use your corporate identity for executing scripts calling AWS API's.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SAML to AWS STS Keys Conversion |
ID | ekniobabpcnfjgfbphhcolcinmnbehde |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/saml-to-aws-sts-keys-conv/ekniobabpcnfjgfbphhcolcinmnbehde |
คำอธิบาย | Generates file with AWS STS Keys after logging in to AWS webconsole using SSO (SAML 2.0). It leverages 'assumeRoleWithSAML' API. |
ขนาดไฟล์ | 157 KB |
จำนวนการติดตั้ง | 14,091 |
เวอร์ชันปัจจุบัน | 3.3 |
อัปเดตครั้งล่าสุด | 2023-03-20 |
วันที่เผยแพร่ | 2019-02-08 |
คะแนน | 3.90/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | prolane.org |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/prolane/samltoawsstskeys |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "author": "G.T.C. Laan (prolane.org)", "homepage_url": "https:\/\/github.com\/prolane\/samltoawsstskeys", "name": "SAML to AWS STS Keys Conversion", "description": "Generates file with AWS STS Keys after logging in to AWS webconsole using SSO (SAML 2.0). It leverages 'assumeRoleWithSAML' API.", "version": "3.3", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "action": { "default_icon": "icons\/icon_32.png", "default_popup": "popup\/popup.html" }, "background": { "service_worker": "background\/script.js" }, "options_page": "options\/options.html", "permissions": [ "webRequest", "storage", "downloads" ], "host_permissions": [ " |