get_missing_tenant_variables
Identify tenant variables with missing values in Octopus Deploy. Filter results by tenant, project, or environment to resolve configuration gaps.
Instructions
Get missing tenant variables
This tool retrieves tenant variables that are missing values. Optionally filter by tenant, project, or environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environmentId | No | Filter by specific environment ID | |
includeDetails | No | Include detailed information about missing variables | |
projectId | No | Filter by specific project ID | |
spaceName | Yes | The space name | |
tenantId | No | Filter by specific tenant ID |
Input Schema (JSON Schema)
{
"properties": {
"environmentId": {
"description": "Filter by specific environment ID",
"type": "string"
},
"includeDetails": {
"description": "Include detailed information about missing variables",
"type": "boolean"
},
"projectId": {
"description": "Filter by specific project ID",
"type": "string"
},
"spaceName": {
"description": "The space name",
"type": "string"
},
"tenantId": {
"description": "Filter by specific tenant ID",
"type": "string"
}
},
"required": [
"spaceName"
],
"type": "object"
}