How to increase S3 storage for account displays 100% usage in storage lens
0
I use S3 to store video records from Twilio Services using the I AM account After storing some objects it stopped receiving any new objects and displays in Storage Lens that it uses 100% of its storage (258.2 MB) (271 objects) Here is the policy for I AM account
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "UploadUserDenyEverything",
"Effect": "Deny",
"NotAction": "*",
"Resource": "*"
},
{
"Sid": "UploadUserAllowPutObject",
"Effect": "Allow",
"Action": [
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::bucketname/folder/*"
],
"Condition": {
"StringEquals": {
"s3:x-amz-acl": [
"public-read"
]
}
}
}
]
}
I got this error in twilio error log
Access denied to external S3 bucket configured in recording settings: Access denied to external S3 bucket configured in recording settings. Review your account's recording settings. The media will not be uploaded until the configuration has been fixed.
Any help would be appreciated.
asked 21 days ago22 views
1 Answers
1
Hello
The total volume of data and number of objects you can store are unlimited. Can you please provide details of where in Storage lens are you seeing 100%?
The error indicates access deny error which points to something in permissions. What is the process through which files are uploaded to S3 bucket? You can try uploading through CLI with the same IAM role to troubleshoot.
answered 21 days ago
Relevant questions
Can I use CloudFront to serve Amazon S3-Infrequent Access or Amazon S3 Glacier objects?
Accepted Answerasked 2 years agoStorage data in aws
asked 9 days agoS3 Storage of 705 MB
Accepted Answerasked 4 months agoCross Account Copy S3 Objects From Account B to AWS KMS-encrypted bucket in Account A
asked 5 months agoS3 Bucket Default Storage Class
asked 2 months agoUnderstanding usage of s3
asked 6 months agoHow to check storage usage in Lightsail?
asked a year agoHow to increase S3 storage for account displays 100% usage in storage lens
asked 21 days agoS3 Storage Capacity
asked 22 days agoWhy is my AWS S3 Usage So High?
asked 7 months ago
Thank you for your answer I Tried using CLI and get access denied then I edited the permissions and it works right now