-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fetch integer value from JSON #190
Comments
bersalazar
added a commit
to bersalazar/vals
that referenced
this issue
Dec 31, 2023
Handles int and bool types when returned as string map value. Resolves: helmfile#114 and helmfile#190
bersalazar
added a commit
to bersalazar/vals
that referenced
this issue
Dec 31, 2023
Handles int and bool types when returned as string map value. Resolves: helmfile#114 and helmfile#190 Signed-off-by: Bernardo Salazar <[email protected]>
@artiodev PR is welcome. |
I looked through code and found problem, if value of key is not string you will get "no value found for key" error. I have no time to fix it, but I want to do it for support all types (int, string, array). @artiodev |
artiodev
pushed a commit
to artiodev/vals
that referenced
this issue
Aug 8, 2024
artiodev
pushed a commit
to artiodev/vals
that referenced
this issue
Aug 8, 2024
Signed-off-by: Gianluca Artioli <[email protected]>
artiodev
pushed a commit
to artiodev/vals
that referenced
this issue
Aug 12, 2024
artiodev
pushed a commit
to artiodev/vals
that referenced
this issue
Aug 12, 2024
Signed-off-by: Gianluca Artioli <[email protected]>
artiodev
pushed a commit
to artiodev/vals
that referenced
this issue
Aug 12, 2024
Signed-off-by: Gianluca Artioli <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I'm trying to fetch integer values from AWS SECRET MANAGER json document, but with vals seems not possibile.
Is there a supported solution out of the box ?
Example JSON
{ "secret": { "test": 1 } }
ref+awssecrets://dev?region=eu-central-1#/secret/test
Result using vals eval -f:
expand awssecrets://dev?region=eu-central-1#/secret/test: no value found for key secret/test
Thanks in advance
The text was updated successfully, but these errors were encountered: