Consider the following
{
"foo": [ "cat", "dog" ]
}
I want to replace these values in Octopus with
{
"foo": [ "wolf" ]
}
How do I do it with Octopus? I can't replace with ["wolf"] in the value as I receive an error: Invalid JSON: Expecting ','.
I'm using dotnet core.
How are you replacing the variable value?
This should be possible using Structured Configuration Variables with a variable named
fooset to["wolf"].