Cross account parameters #194
-
We're loading configs from Parameter Store and would like to use this package. The issue is that they are on another account (account B) from where our lambda is running (account A). This is what we are doing so far:
Is it possible to achieve the same with this package? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@andremantaswow Good afternoon. Thanks for opening the discussion. Per Working with shared parameters in Parameter Store, to share a parameter, it needs to be added to resource share. Thereafter, it could be accessed via ARN, e.g using AWS CLI:
This package uses [GetParametersByPath]9https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetParametersByPath.html) service API call which could only get parameters that start at a certain path. As a result, accessing shared parameters might not be currently supported by this package. Thanks, |
Beta Was this translation helpful? Give feedback.
@andremantaswow Good afternoon. Thanks for opening the discussion. Per Working with shared parameters in Parameter Store, to share a parameter, it needs to be added to resource share. Thereafter, it could be accessed via ARN, e.g using AWS CLI:
This package uses [GetParametersByPath]9https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetParametersByPath.html) service API call which could only get parameters that start at a certain path. As a result, accessing shared parameters might not be currently supported by this package.
Thanks,
Ashish