Skip to content

Commit 6a60915

Browse files
committed
remove public-read ACL since we have a policy on the bucket
1 parent 64b962f commit 6a60915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backfill_corrections/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ publish:
8989
if [[ $$NUM_FILES -gt 0 ]]; then \
9090
aws configure set aws_access_key_id $(AWS_KEY_ID); \
9191
aws configure set aws_secret_access_key $(AWS_SECRET_KEY); \
92-
aws s3 cp $(USR_EXPORT_DIR) $(S3_BUCKET)/ --recursive --exclude "*" --include "*.csv.gz" --acl public-read; \
92+
aws s3 cp $(USR_EXPORT_DIR) $(S3_BUCKET)/ --recursive --exclude "*" --include "*.csv.gz"; \
9393
echo "SUCCESS: published $${NUM_FILES} files to the S3 bucket" >> $(LOG_FILE); \
9494
else \
9595
echo "No files in $(USR_EXPORT_DIR) to publish" >> $(LOG_FILE); \

0 commit comments

Comments
 (0)