Last active
January 13, 2022 08:04
-
-
Save pflooky/18d89691e4408d14bf1b313c4fd36d92 to your computer and use it in GitHub Desktop.
Minimum AWS permissions needed for Spark to write a file to S3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Action": [ | |
"s3:GetObject", | |
"s3:PutObject", | |
"s3:ListObject", | |
"s3:DeleteObject" | |
], | |
"Effect": "Allow", | |
"Resource": [ | |
"arn:aws:s3:::secret-bucket/*" | |
], | |
"Sid": "" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment