From f43ba1fbb9bad9d6095e06c8343eccbccab31b4f Mon Sep 17 00:00:00 2001 From: bandesz Date: Mon, 5 Dec 2016 16:53:15 +0000 Subject: [PATCH] Enable SSE for S3 upload --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b44aa8b91..4cae3883d 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ build-codedeploy-artifact: ## Build the deploy artifact for CodeDeploy .PHONY: upload-codedeploy-artifact ## Upload the deploy artifact for CodeDeploy upload-codedeploy-artifact: check-env-vars - aws s3 cp --region eu-west-1 target/notifications-admin.zip s3://${DNS_NAME}-codedeploy/${CODEDEPLOY_PREFIX}-${DEPLOY_BUILD_NUMBER}.zip + aws s3 cp --region eu-west-1 --sse AES256 target/notifications-admin.zip s3://${DNS_NAME}-codedeploy/${CODEDEPLOY_PREFIX}-${DEPLOY_BUILD_NUMBER}.zip .PHONY: test test: venv ## Run tests