We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ca7d1a commit 8f103e9Copy full SHA for 8f103e9
infrastructure/instance/file_name_processor.tf
@@ -134,6 +134,20 @@ resource "aws_iam_policy" "filenameprocessor_lambda_exec_policy" {
134
"${aws_s3_bucket.batch_data_destination_bucket.arn}/*"
135
]
136
},
137
+ {
138
+ Effect = "Allow"
139
+ Action = [
140
+ "s3:GetObject",
141
+ "s3:ListBucket",
142
+ "s3:PutObject",
143
+ "s3:CopyObject",
144
+ "s3:DeleteObject"
145
+ ]
146
+ Resource = [
147
+ aws_s3_bucket.batch_data_ea_bucket.arn,
148
+ "${aws_s3_bucket.batch_data_ea_bucket.arn}/*"
149
150
+ },
151
{
152
Effect = "Allow",
153
Action = [
0 commit comments