View on GitHub

Wiki

A Wiki which shows the results of different courses

Download this project as a .zip file Download this project as a tar.gz file

Navigation

AWS

Microservices

Docker

Kubernetes

ServiceNow

JavaScript

React

Ethical Hacking

IAM

IAM Policies Structure

The JSON-Structure for IAM policies consists of:

{
    "Version": "2012-10-17",
    "Id": "S3-Account-Permissions", // Optional
    "Statement": [
        {
            "Sid": "1", //Optional
            "Effect": "Allow",
            "Principial":{
                "Aws":["arn:aws:iam::123456789012:root"]
            },
            "Action":[
                "s3:GetObject",
                "s3:PutObject"
            ],
            "Resource":["arn:aws:s3:::mybucket/*"]
        }
    ]
}

IAM Security Tools