edit-variable
Modify details of an existing variable in Terrakube MCP Server, including key, value, category, and sensitivity, to ensure accurate infrastructure configuration.
Instructions
Updates an existing variable's details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | New variable category | |
| description | No | New variable description | |
| key | No | New variable key | |
| organizationId | Yes | Organization ID | |
| sensitive | No | New sensitive flag | |
| value | No | New variable value | |
| variableId | Yes | Variable ID | |
| workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"description": "New variable category",
"type": "string"
},
"description": {
"description": "New variable description",
"type": "string"
},
"key": {
"description": "New variable key",
"type": "string"
},
"organizationId": {
"description": "Organization ID",
"type": "string"
},
"sensitive": {
"description": "New sensitive flag",
"type": "boolean"
},
"value": {
"description": "New variable value",
"type": "string"
},
"variableId": {
"description": "Variable ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"organizationId",
"workspaceId",
"variableId"
],
"type": "object"
}