File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,11 @@ The audit policy is comprised of the following permissions:
164
164
| | backup: ListRecoveryPointsByResource | |
165
165
| | backup: ListReportPlans | |
166
166
| | backup: ListRestoreJobs | |
167
+ | COGNITO-IDP | cognito-idp: GetSigningCertificate | |
168
+ | | cognito-idp: GetCSVHeader | |
169
+ | | cognito-idp: GetUserPoolMfaConfig | |
170
+ | | cognito-idp: GetUICustomization | |
171
+
167
172
| COMPUTEOPTIMIZER | compute-optimizer: DescribeRecommendationExportJobs | * |
168
173
| | compute-optimizer: GetAutoScalingGroupRecommendations | |
169
174
| | compute-optimizer: GetEffectiveRecommendationPreferences | |
Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ data "aws_iam_policy_document" "lacework_audit_policy" {
129
129
sid = " GLUE"
130
130
actions = [" glue:ListWorkflows" ,
131
131
" glue:BatchGetWorkflows" ,
132
+ " glue:GetWorkflows" ,
132
133
" glue:GetTags" ]
133
134
resources = [" *" ]
134
135
}
@@ -210,7 +211,17 @@ data "aws_iam_policy_document" "lacework_audit_policy" {
210
211
]
211
212
resources = [" *" ]
212
213
}
213
-
214
+
215
+ statement {
216
+ sid = " COGNITOIDP"
217
+ actions = [" cognito-idp:GetSigningCertificate" ,
218
+ " cognito-idp:GetCSVHeader" ,
219
+ " cognito-idp:GetUserPoolMfaConfig" ,
220
+ " cognito-idp:GetUICustomization" ,
221
+ ]
222
+ resources = [" *" ]
223
+ }
224
+
214
225
statement {
215
226
sid = " COMPUTEOPTIMIZER"
216
227
actions = [
You can’t perform that action at this time.
0 commit comments