S3: support disabling ACL with none value

This change lets you disable ACL when using S3 by using a configuration
value of `none`. This way we maintain backward compatibility with the
default setting being `private`.

Fixes: #1067
This commit is contained in:
Wade Simmons
2022-06-21 20:15:49 -04:00
committed by Benj Fassbind
parent f61514edaf
commit c9f5763a70
4 changed files with 6 additions and 3 deletions

View File

@@ -49,6 +49,8 @@ func NewPublishedStorageRaw(
) (*PublishedStorage, error) {
if defaultACL == "" {
defaultACL = "private"
} else if defaultACL == "none" {
defaultACL = ""
}
if storageClass == "STANDARD" {