IAM Policy Visualizer

Add "Statements" to build your policy. Each statement defines Effect, Actions, and Resources.

JSON Output

Build AWS Policies Visually

Add statements by selecting an Effect (Allow/Deny), AWS Service (S3, DynamoDB, etc.), Actions, and Resources. The tool generates a syntactically correct JSON policy ready for the AWS Console.

A basic IAM Policy structure:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "s3:ListBucket",
      "Resource": "arn:aws:s3:::my-bucket"
    }
  ]
}