get_variable
Retrieve specific Airflow variables by their key, including metadata such as value and description, simplifying variable management and configuration within Apache Airflow clusters.
Instructions
[Tool Role]: Retrieves a specific variable by its key from Airflow.
Args: variable_key: The key of the variable to retrieve
Returns: Variable information including key, value, and description
Input Schema
Name | Required | Description | Default |
---|---|---|---|
variable_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"variable_key": {
"title": "Variable Key",
"type": "string"
}
},
"required": [
"variable_key"
],
"type": "object"
}