0

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.

rACkle
  • 433
  • 1
  • 4
  • 10

1 Answers1

0

How are you replacing the variable value?

This should be possible using Structured Configuration Variables with a variable named foo set to ["wolf"].

ryan.rousseau
  • 1,595
  • 1
  • 11
  • 22