Skip to content

Commit 6e662c3

Browse files
committed
Update README.md to reflect correct permissions required for Parameter Store.
1 parent aa02b6e commit 6e662c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,15 +209,15 @@ For more information and other configurable options please refer to [Configuring
209209

210210
# Permissions
211211
## Parameter Store
212-
The AWS credentials used must have access to the `ssm:GetParameters` service operation from AWS System Manager. Below is an example IAM policy for this action.
212+
The AWS credentials used must have access to the `ssm:GetParametersByPath` service operation from AWS System Manager. Below is an example IAM policy for this action.
213213
```JSON
214214
{
215215
"Version": "2012-10-17",
216216
"Statement": [
217217
{
218218
"Sid": "SSMPermissionStatement",
219219
"Effect": "Allow",
220-
"Action": "ssm:GetParameters",
220+
"Action": "ssm:GetParametersByPath",
221221
"Resource": "arn:aws:ssm:${Region}:${Account}:parameter/${ParameterNamePrefix}*"
222222
}
223223
]

0 commit comments

Comments
 (0)