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
It's now possible to read something like that :
```json
{
"foo": "bar",
"FOO": "truc",
}
```
and use these variables:
```yml
- type: readfile
path: the_file.json
info: "{{.Result.ContentJSON.foo}}-{{.Result.ContentJSON.FOO}}"
```
Environment variable: VENOM_PRESERVE_CASE
venom 1.1.x
VENOM_PRESERVE_CASE="AUTO" is equals to VENOM_PRESERVE_CASE="OFF"
venom 1.2.x
VENOM_PRESERVE_CASE="AUTO" is equals to VENOM_PRESERVE_CASE="ON"
venom 1.1 users, you can try:
```sh
> export VENOM_PRESERVE_CASE="ON";
> venom run ...
```
close#522close#547close#522
Signed-off-by: Yvonnick Esnault <yvonnick.esnault@corp.ovh.com>
It's now possible to read something like that :
```json
{
"foo": "bar",
"FOO": "truc",
}
```
and use these variables:
```yml
- type: readfile
path: the_file.json
info: "{{.Result.ContentJSON.foo}}-{{.Result.ContentJSON.FOO}}"
```
Environment variable: VENOM_PRESERVE_CASE
venom 1.1.x
VENOM_PRESERVE_CASE="AUTO" is equals to VENOM_PRESERVE_CASE="OFF"
venom 1.2.x
VENOM_PRESERVE_CASE="AUTO" is equals to VENOM_PRESERVE_CASE="ON"
venom 1.1 users, you can try:
```sh
> export VENOM_PRESERVE_CASE="ON";
> venom run ...
```
close#522close#547close#522
Signed-off-by: Yvonnick Esnault <yvonnick.esnault@corp.ovh.com>
The variable case in skip assertions are not managed.
We must currently use the variable lowercase version to make it works.
Example:
The text was updated successfully, but these errors were encountered: