Skip to content

Instantly share code, notes, and snippets.

@adhorn
Last active June 28, 2018 07:40
Show Gist options
  • Save adhorn/8b0903c9807446ea90257b28ff191c19 to your computer and use it in GitHub Desktop.
Save adhorn/8b0903c9807446ea90257b28ff191c19 to your computer and use it in GitHub Desktop.
SQS Lambda Permission
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "sqs:ListQueues",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": "sqs:*",
"Resource": "arn:aws:sqs:*:*:*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment