We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2a085 commit 2c10aa6Copy full SHA for 2c10aa6
1 file changed
infrastructure/policies.tf
@@ -32,6 +32,16 @@ resource "aws_iam_policy" "read_only_role_extra_permissions" {
32
Resource = [
33
"arn:aws:kms:eu-west-2:${data.aws_caller_identity.current.account_id}:key/*",
34
]
35
+ },
36
+ {
37
+ Effect = "Allow",
38
+ Action = [
39
+ "logs:PutQueryDefinition",
40
+ "logs:DeleteQueryDefinition",
41
+ ],
42
+ Resource = [
43
+ "arn:aws:logs:eu-west-2:${data.aws_caller_identity.current.account_id}:log-group::log-stream:",
44
+ ]
45
}
46
47
})
0 commit comments