Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Latest commit

 

History

History
43 lines (29 loc) · 956 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 956 Bytes

demystify

AWS SDK for JavaScript contains a list of all Actions available for every Service to grant IAM access permissions.

The download information originates from the AWS Policy Generator

Demystify provides AWS Chatbot integration with Slack Channels for IAM action and service lookups.

@aws invoke action --payload {"item": "s3:GetObject*”}
@aws invoke service --payload {"item": "sso*”}

IAM Access Analyzer provides the security validation for identity, resource, and service control JSON policies.

@aws invoke iam --payload <json>
@aws invoke resource --payload <json>
@aws invoke scp --payload <json>

Convert multi-line JSON to a single line with Python for compatibility.

import json
import sys

if __name__ == '__main__':
    json.dump(json.load(sys.stdin),sys.stdout)