Created
October 13, 2016 12:29
-
-
Save my-janala/d07143cd277b8939f24d130c0cd0d01b to your computer and use it in GitHub Desktop.
Creating SQS readonly policy for IAM user
This file contains 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "Stmt1470826626000", | |
"Effect": "Allow", | |
"Action": [ | |
"sqs:ListQueues", | |
"sqs:GetQueueAttributes", | |
"sqs:ReceiveMessage" | |
], | |
"Resource": [ | |
"arn:aws:sqs:eu-west-1:**********:*********" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment