@itentialopensource/adapter-terraform_enterprise
Version:
This adapter integrates with system described as: terraform Enterprise.
44 lines • 1.1 kB
JSON
{
"$id": "schema.json",
"type": "object",
"schema": "http://json-schema.org/draft-07/schema#",
"translate": true,
"dynamicfields": true,
"properties": {
"ph_request_type": {
"type": "string",
"description": "type of request (internal to adapter)",
"default": "createWorkspaceVariable",
"enum": [
"createWorkspaceVariable",
"listWorkspaceVariables",
"updateWorkspaceVariables",
"deleteWorkspaceVariables"
],
"external_name": "ph_request_type"
},
"workspaceId": {
"type": "string",
"description": "The ID of the workspace that owns the variable.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "workspace_id"
},
"variableId": {
"type": "string",
"description": "The ID of the variable to be deleted.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "variable_id"
}
},
"definitions": {}
}