Skip to content

Instantly share code, notes, and snippets.

@michaelgreenhill
Created February 17, 2020 05:59
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 michaelgreenhill/747dc866082cbca5ddb245b0d7a1b931 to your computer and use it in GitHub Desktop.
Save michaelgreenhill/747dc866082cbca5ddb245b0d7a1b931 to your computer and use it in GitHub Desktop.
AWS Secrets Manager IAM role
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"secretsmanager:GetResourcePolicy",
"secretsmanager:GetSecretValue",
"secretsmanager:DescribeSecret",
"secretsmanager:ListSecretVersionIds"
],
"Resource": "<ARN of your fancy new secret>"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment