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
ecspresso verify with the IAM role that allowed only ssm:GetParameters action should successfully get the parameter(s) from AWS Systems Manager Parameters Store.
Actual behavior
It fails due to lack of the permission to call ssm:GetParameter (the singular one, not the plural one).
I added #681 for backward compatibility. When GetParameters API fails with "access denied", fallback to GetParameter API with warning logs. This fallback will be removed v2.4.
Expected behavior
ecspresso verify
with the IAM role that allowed onlyssm:GetParameters
action should successfully get the parameter(s) from AWS Systems Manager Parameters Store.Actual behavior
It fails due to lack of the permission to call
ssm:GetParameter
(the singular one, not the plural one).refs.
ecspresso/verify.go
Line 119 in ec85dec
Proposed solution
It calls
ssm:GetParameters
instead ofssm:GetParameter
.That change also introduce the chance to reduce the API calls.
The text was updated successfully, but these errors were encountered: