0481d69907
Show masked switch for each variable When toggled on, the variable value will be masked in runner logs Show warning message if the switch is on but the value is not maskable
19 lines
406 B
JSON
19 lines
406 B
JSON
{
|
|
"type": "object",
|
|
"required": [
|
|
"id",
|
|
"key",
|
|
"value",
|
|
"masked",
|
|
"protected"
|
|
],
|
|
"properties": {
|
|
"id": { "type": "integer" },
|
|
"key": { "type": "string" },
|
|
"value": { "type": "string" },
|
|
"masked": { "type": "boolean" },
|
|
"protected": { "type": "boolean" },
|
|
"environment_scope": { "type": "string", "optional": true }
|
|
},
|
|
"additionalProperties": false
|
|
}
|