An open API service indexing awesome lists of open source software.

https://github.com/sagar285/awss3upload


https://github.com/sagar285/awss3upload

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

{
"Version": "2012-10-17",
"Id": "PublicAccessPolicy",
"Statement": [
{
"Sid": "DenyInsecureConnections",
"Effect": "Deny",
"Principal": "*",
"Action": "s3:*",
"Resource": "arn:aws:s3:::bucket-name/*",
"Condition": {
"Bool": {
"aws:SecureTransport": "false"
}
}
},
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::bucket-name/*"
}
]
}