Skip to content

Commit d07923b

Browse files
add athena storage actions (#2531)
1 parent 305a7ff commit d07923b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

terraform/core/24-qlik-iam.tf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,17 @@ data "aws_iam_policy_document" "qlik_can_read_from_s3_and_athena" {
132132
"*"
133133
]
134134
}
135+
136+
statement {
137+
effect = "Allow"
138+
actions = [
139+
"s3:GetBucketLocation",
140+
"s3:ListBucket",
141+
"s3:GetBucketVersioning"
142+
]
143+
resources = [
144+
module.athena_storage.bucket_arn,
145+
]
146+
}
135147
}
148+

0 commit comments

Comments
 (0)