ansibleforms icon indicating copy to clipboard operation
ansibleforms copied to clipboard

Return `extravars` & `credentials` as a JSON object not a JSON string

Open dsha256 opened this issue 3 months ago • 5 comments

Currently extravars & credentials are returned as a JSON string. Returning them as JSON objects would be great.

Currently:

"extravars": "{\"name\":\"vm1\",\"region\":\"myregion\",\"opco\":\"myopco\"}"

After:

{
  "name": "vm1",
  "opco": "myopco",
  "region": "myregion"
}

dsha256 avatar May 02 '24 15:05 dsha256