mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
New aws_ses_identity module to manage AWS Simple Email Service Identity (#31140)
* Add aws_ses_identity module * Update CI alias, add BotoCoreError exception handling. * Add SES and SNS permissions to hacking/aws_config to run aws_ses_identity integration tests
This commit is contained in:
committed by
Sloane Hertel
parent
bbdddffa1e
commit
d16bc1c3f4
@@ -249,6 +249,37 @@
|
||||
"Resource": [
|
||||
"*"
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sid": "AllowSESManagement",
|
||||
"Effect": "Allow",
|
||||
"Action": [
|
||||
"ses:VerifyEmailIdentity",
|
||||
"ses:DeleteIdentity",
|
||||
"ses:GetIdentityVerificationAttributes",
|
||||
"ses:GetIdentityNotificationAttributes",
|
||||
"ses:VerifyDomainIdentity",
|
||||
"ses:SetIdentityNotificationTopic",
|
||||
"ses:SetIdentityHeadersInNotificationsEnabled",
|
||||
"ses:SetIdentityFeedbackForwardingEnabled"
|
||||
],
|
||||
"Resource": [
|
||||
"*"
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sid": "AllowSNSManagement",
|
||||
"Effect": "Allow",
|
||||
"Action": [
|
||||
"SNS:CreateTopic",
|
||||
"SNS:DeleteTopic",
|
||||
"SNS:ListTopics",
|
||||
"SNS:GetTopicAttributes",
|
||||
"SNS:ListSubscriptionsByTopic"
|
||||
],
|
||||
"Resource": [
|
||||
"*"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user