基本上我将图像存储在 S3 上的存储桶中。但是我很难在我的存储桶策略中添加什么。我非常想知道我的一个桶下面有什么
A) 正确 B) 安全
目标:从我的 [应用服务器] 读取/显示图像
{
"Version": "2008-10-17",
"Id": "S3PolicyId1",
"Statement": [
{
"Sid": "IPDeny",
"Effect": "Allow",
"Principal": {
"Federated": "accounts.google.com"
},
"Action": "s3:*",
"Resource": "arn:aws:s3:::submissionthumbs/*",
"Condition": {
"NotIpAddress": {
"aws:SourceIp": "[APPIP]"
}
}
}
]
}
我希望能够从存储桶中读取、写入和删除资产。