Add S3 ACL for aws-exec-read. Closes #740.

This commit is contained in:
Steve Pulec 2016-11-23 19:42:36 -06:00
parent 1b4bb156e4
commit 136f6d67fb

View File

@ -213,6 +213,8 @@ def get_canned_acl(acl):
pass # TODO: bucket owner ACL
elif acl == 'bucket-owner-full-control':
pass # TODO: bucket owner ACL
elif acl == 'aws-exec-read':
pass # TODO: bucket owner, EC2 Read
elif acl == 'log-delivery-write':
grants.append(FakeGrant([LOG_DELIVERY_GRANTEE], [PERMISSION_READ_ACP, PERMISSION_WRITE]))
else: