get_variable
Retrieve specific configuration variables from Apache Airflow deployments using their unique keys to access runtime parameters and settings.
Instructions
Get a variable by key
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"title": "Key",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}