From ba383b5f363dafe3b893e08de1a124b7ce96df44 Mon Sep 17 00:00:00 2001 From: Ricky Boyce Date: Tue, 14 Jun 2022 11:23:28 +1200 Subject: [PATCH] fix: changed the default awsAcl from public-read to private --- plugins/images/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/images/index.js b/plugins/images/index.js index d2da811..778f704 100644 --- a/plugins/images/index.js +++ b/plugins/images/index.js @@ -25,7 +25,7 @@ let plugin = module.exports = { } // Settings - this.awsAcl = options.awsAcl || 'public-read' + this.awsAcl = options.awsAcl || 'private' // default this.awsBucket = options.awsBucket this.awsAccessKeyId = options.awsAccessKeyId this.awsSecretAccessKey = options.awsSecretAccessKey