Hello! I'd like to try a severless version of Dags...
# ask-community
n
Hello! I'd like to try a severless version of Dagster Cloud and am wondering if there is documentation on what kind of permissions the associated AWS IAM user/role will need? I can't find this in the linked repo in the setup.
d
Hi Natalie - that example uses an s3 io manager to read from and write to an s3 bucket that you provide, so it would need IAM permissions to read and write from that bucket. I'd expet granting these policies for that bucket in the IAM role to work:
Copy code
- s3:ListBucket
- s3:PutObject
- s3:GetObject
- s3:DeleteObject
n
Thanks Daniel!