Skip to content

Commit a40e918

Browse files
authored
feat: add AWS personalize service permissions (#125)
Signed-off-by: ljohnny <ljohnny@fortinet.com>
1 parent c0ccfb8 commit a40e918

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,3 +192,6 @@ The audit policy is comprised of the following permissions:
192192
| | aps:DescribeRuleGroupsNamespace | |
193193
| APPSTREAM | appstream:Describe* | |
194194
| | appstream:List* | |
195+
| PERSONALIZE | personalize:Describe* | |
196+
| | personalize:List* | |
197+
| | personalize:GetSolutionMetrics | |

main.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,15 @@ data "aws_iam_policy_document" "lacework_audit_policy" {
270270
]
271271
resources = ["*"]
272272
}
273+
274+
statement {
275+
sid = "PERSONALIZE"
276+
actions = ["personalize:Describe*",
277+
"personalize:List*",
278+
"personalize:GetSolutionMetrics",
279+
]
280+
resources = ["*"]
281+
}
273282
}
274283

275284
resource "aws_iam_policy" "lacework_audit_policy" {

0 commit comments

Comments
 (0)