Replies: 1 comment
-
|
Hi @jcmsj! Sorry I haven't documented the IAM policy requirements yet for the s3 + sqlite functionality. All it needs is s3:GetObject and s3:PutObject but the resource needs to handle objects with Example: If using S3 for media storage as well, it will be a bit different depending on your needs and I recommend a separate bucket. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I made an IAM policy with full s3 access to a specific bucket then attached that to a newly made IAM user+access key, but the app keeps resetting -> nothing gets stored in the bucket, and no relevant error msgs in vercel's deployment logs
the policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:*", "s3-object-lambda:*" ], "Resource": "arn:aws:s3:::uhc-serverlesswp" } ] }And just to double check, only the S3_SQLITE related env vars are needed?
Beta Was this translation helpful? Give feedback.
All reactions