Skip to content

Instantly share code, notes, and snippets.

@apun
Last active November 17, 2015 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apun/0647280645b399917191 to your computer and use it in GitHub Desktop.
Save apun/0647280645b399917191 to your computer and use it in GitHub Desktop.
Worker Lambda role IAM policy for accessing SSH keys in S3
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1447800379000",
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::s3-bucket-with-key/path-to-key-files/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment