Advanced AWS IAM policy permissions
Creating restrictive IAM integration policies
Overview
Resolution
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "ListSecrets",
"Effect": "Allow",
"Action": "secretsmanager:ListSecrets",
"Resource": "*"
},
{
"Sid": "SecretAccess",
"Effect": "Allow",
"Action": [
"secretsmanager:GetSecretValue",
"secretsmanager:DescribeSecret"
],
"Resource": [
"arn:aws:secretsmanager:*:*:secret:sample*",
"arn:aws:secretsmanager:*:*:secret:_cloudtruth_test_*"
]
}
]
}Last updated
Was this helpful?