Created
September 5, 2018 05:35
-
-
Save jiehan1029/7d99aee5c64add5c451c6cde79fcd830 to your computer and use it in GitHub Desktop.
AWS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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