I have an environment json file.
{
"key": "secret_qa",
"value": "secret_qa_value",
"type": "default",
"enabled": true
},
in the yaml file , i am using -sed to update the value in the same file
- sed -i "s/secret_qa_value/${secret_qa_value}/g" ./TEST_QA.postman_environment.json.
But its not updating. Is the syntax correct