Skip to content

Commit

Permalink
feat: allow update of Pinpoint SMS opt-out lists (#290)
Browse files Browse the repository at this point in the history
Update the SupportCenter-Admin permission set to allow users to
manage the Pinpoint SMS opt-out lists.

This is required as Notify is moving to using Pinpoint to manage SMS.
  • Loading branch information
patheard authored Jun 19, 2024
1 parent 51bc2aa commit a267a32
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions terragrunt/org_account/iam_identity_center/common_permissions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,18 @@ data "aws_iam_policy_document" "admin_support_center" {
]
resources = ["*"]
}

statement {
sid = "PinpointListAndDeleteOptedOutNumbers"
effect = "Allow"
actions = [
"sms-voice:DeleteOptedOutNumber",
"sms-voice:DescribeOptOutLists",
"sms-voice:DescribeOptedOutNumbers",
"sms-voice:PutOptedOutNumber"
]
resources = ["*"]
}
}

#
Expand Down

0 comments on commit a267a32

Please sign in to comment.