mirror of
https://github.com/ansible/ansible-documentation.git
synced 2026-03-27 13:28:51 +07:00
sqs_queue - Move to boto3 and add support for various extra features (#66795)
* reworked sqs_queue * Switch default purge_tags behaviour to false. This matches the behaviour of ec2_tag and ecs_tag. * Minor lint / review fixups * Add missing AWS IAM policy for SQS tests * Move integration tests to using module_defaults: group/aws:... * add changelog * Break out the 'compatability' map from our spec definition (gets flagged by the schema validation) * Tweaks based on review * add basic examples * Lint fixups * Switch out NonExistentQueue logic so it's easier to follow * Reorder name argument options for consistency Co-authored-by: Dennis Podkovyrin <dennis.podkovyrin@gmail.com>
This commit is contained in:
@@ -263,6 +263,18 @@
|
||||
"lightsail:StopInstance"
|
||||
],
|
||||
"Resource": "arn:aws:lightsail:*:*:*"
|
||||
}
|
||||
},
|
||||
{
|
||||
"Sid": "AllowSQS",
|
||||
"Effect": "Allow",
|
||||
"Action": [
|
||||
"sqs:GetQueueURL",
|
||||
"sqs:CreateQueue",
|
||||
"sqs:GetQueueAttributes",
|
||||
"sqs:DeleteQueue",
|
||||
"sqs:SetQueueAttributes"
|
||||
],
|
||||
"Resource": "arn:aws:sqs:*:*:*"
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user