list-variables
Retrieve all variables in a specified workspace within Terrakube MCP Server, using organization and workspace IDs for accurate identification.
Instructions
Lists all variables in the specified workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
organizationId | Yes | Organization ID | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"organizationId": {
"description": "Organization ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"organizationId",
"workspaceId"
],
"type": "object"
}