Skip to content

Instantly share code, notes, and snippets.

@my-janala
Created October 13, 2016 12:29
Show Gist options
  • Save my-janala/d07143cd277b8939f24d130c0cd0d01b to your computer and use it in GitHub Desktop.
Save my-janala/d07143cd277b8939f24d130c0cd0d01b to your computer and use it in GitHub Desktop.
Creating SQS readonly policy for IAM user
{
"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