You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(ssm): doc for grantRead in IParameter is missing GetParameters (#27867)
The doc for `grantRead` in `IParameter` is missing `GetParameters`.
The `grantRead` actually grants 'ssm:GetParameters'.
```ts
return iam.Grant.addToPrincipal({
grantee,
actions: [
'ssm:DescribeParameters',
'ssm:GetParameters',
'ssm:GetParameter',
'ssm:GetParameterHistory',
],
```
https://github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-ssm/lib/parameter.ts#L181-L186
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
0 commit comments