Created
June 20, 2020 17:15
-
-
Save DanielDaCosta/e958e612e60a89e02239fecf10d04785 to your computer and use it in GitHub Desktop.
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": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"logs:CreateLogGroup", | |
"logs:CreateLogStream", | |
"logs:DescribeLogGroups", | |
"logs:DescribeLogStreams", | |
"logs:PutLogEvents", | |
"logs:GetLogEvents", | |
"logs:FilterLogEvents" | |
], | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"sqs:GetQueueUrl", | |
"sqs:ChangeMessageVisibility", | |
"sqs:ListDeadLetterSourceQueues", | |
"sqs:SendMessageBatch", | |
"sqs:PurgeQueue", | |
"sqs:ReceiveMessage", | |
"sqs:SendMessage", | |
"sqs:GetQueueAttributes", | |
"sqs:CreateQueue", | |
"sqs:ListQueueTags", | |
"sqs:ChangeMessageVisibilityBatch", | |
"sqs:SetQueueAttributes" | |
], | |
"Resource": "${sqs_arn}" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "sqs:ListQueues", | |
"Resource": "*" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment