idpawssamlinterceptor

This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds

idpawssamlinterceptor란 무엇입니까?

idpawssamlinterceptor은(는) bob2build.2020에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

idpawssamlinterceptor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    }
}