get_tenant_variables
Retrieve tenant variables from Octopus Deploy by type - all variables, common variables, or project-specific variables for deployment configuration.
Instructions
Get tenant variables by type
This tool retrieves different types of tenant variables. Use variableType parameter to specify which type:
"all": Get all tenant variables
"common": Get common variables only
"project": Get project-specific variables only
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeMissingVariables | No | Include missing variables in the response (for common/project types) | |
spaceName | Yes | The space name | |
tenantId | Yes | The ID of the tenant to retrieve variables for | |
variableType | Yes | Type of variables to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"includeMissingVariables": {
"description": "Include missing variables in the response (for common/project types)",
"type": "boolean"
},
"spaceName": {
"description": "The space name",
"type": "string"
},
"tenantId": {
"description": "The ID of the tenant to retrieve variables for",
"type": "string"
},
"variableType": {
"description": "Type of variables to retrieve",
"enum": [
"all",
"common",
"project"
],
"type": "string"
}
},
"required": [
"spaceName",
"tenantId",
"variableType"
],
"type": "object"
}