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

Demystifying IAM Star Permissions

License

Notifications You must be signed in to change notification settings

4n6ir/demystify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)