Skip to content

Instantly share code, notes, and snippets.

@jiehan1029
Created September 5, 2018 05:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jiehan1029/7d99aee5c64add5c451c6cde79fcd830 to your computer and use it in GitHub Desktop.
Save jiehan1029/7d99aee5c64add5c451c6cde79fcd830 to your computer and use it in GitHub Desktop.
AWS
// full access to AWS IAM, Amazon EC2, Amazon S3, Amazon RDS, Amazon SNS, Amazon SQS, Amazon Rekognition, AWS Lambda, Amazon Cognito, AWS Cloud9, AWS X-Ray, and AWS CloudFormation
// copy the following in JSON tab of the Create policy section
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Sid1",
"Effect": "Allow",
"Action": [
"iam:*",
"rds:*",
"sns:*",
"cloudformation:*",
"rekognition:*",
"ec2:*",
"cognito-idp:*",
"sqs:*",
"xray:*",
"s3:*",
"elasticloadbalancing:*",
"cloud9:*",
"lambda:*",
"tag:GetResources",
"logs:*",
"kms:ListKeyPolicies",
"kms:GenerateRandom",
"kms:ListRetirableGrants",
"kms:GetKeyPolicy",
"kms:ListResourceTags",
"kms:ReEncryptFrom",
"kms:ListGrants",
"kms:GetParametersForImport",
"kms:ListKeys",
"kms:GetKeyRotationStatus",
"kms:ListAliases",
"kms:ReEncryptTo",
"kms:DescribeKey"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment