get-variable
Retrieve detailed information about a specific variable in Terrakube by providing the organization, workspace, and variable IDs for efficient infrastructure management.
Instructions
Retrieves detailed information about a specific variable
Input Schema
Name | Required | Description | Default |
---|---|---|---|
organizationId | Yes | Organization ID | |
variableId | Yes | Variable 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"
},
"variableId": {
"description": "Variable ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"organizationId",
"workspaceId",
"variableId"
],
"type": "object"
}