Skip to content

Commit a68734f

Browse files
add arcus data storage and kms key to glue IAM role (#2550)
1 parent fc87a2a commit a68734f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

terraform/core/10-aws-iam-glue.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ data "aws_iam_policy_document" "access_to_s3_iam_and_secrets" {
153153
"${module.glue_scripts.bucket_arn}/*",
154154
"${module.glue_temp_storage.bucket_arn}/*",
155155
"${module.noiseworks_data_storage.bucket_arn}/*",
156-
"${module.spark_ui_output_storage.bucket_arn}/*"
156+
"${module.spark_ui_output_storage.bucket_arn}/*",
157+
"${module.arcus_data_storage.bucket_arn}/*",
157158
]
158159
}
159160
statement {
@@ -173,7 +174,8 @@ data "aws_iam_policy_document" "access_to_s3_iam_and_secrets" {
173174
module.trusted_zone.kms_key_arn,
174175
module.noiseworks_data_storage.kms_key_arn,
175176
module.spark_ui_output_storage.kms_key_arn,
176-
aws_kms_key.secrets_manager_key.arn
177+
module.arcus_data_storage.kms_key_arn,
178+
aws_kms_key.secrets_manager_key.arn,
177179
]
178180
}
179181
statement {

0 commit comments

Comments
 (0)