Skip to content

Instantly share code, notes, and snippets.

@jastang
Created January 25, 2019 22:01
Show Gist options
  • Save jastang/be2323b3d7aa5b43371301c721a0906d to your computer and use it in GitHub Desktop.
Save jastang/be2323b3d7aa5b43371301c721a0906d to your computer and use it in GitHub Desktop.
iam-rds-trust-policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": [
"arn:aws:iam::XXXXXXXXX:role/your-lambda-function-role"
],
"Service": "lambda.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment