Replies: 1 comment
-
@tarun067 Please have a look at the issue #123. Your scenario appears similar and the support for JsonParameterProcessor was fixed as part of this issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have stored a json in AWS parameter store
eg:
Path: env/parameter/BaseParam
Key: Param1
value
{ "x":"TestValue",
"Y":"TestValue2"}
Getting these param as follow
builder.Configuration.AddSystemsManager(source =>
{
source.Optional = true;
source.Path = $"/" + env + "/Parameter";
source.ReloadAfter = TimeSpan.FromSeconds(200000);
source.ParameterProcessor = new JsonParameterProcessor();
}).Build();
It is not loading parameter into configuration provider
Tried getting value by this seems like this one is not working
builder.Configuration.AddSystemsManager(source =>
{
source.Optional = true;
source.Path = $"/" + env + "/Parameter";
source.ReloadAfter = TimeSpan.FromSeconds(200000);
}).Build();
Any solution to get a json from paramter store?
Beta Was this translation helpful? Give feedback.
All reactions