Does anybody know how to unblock admin>configuration in UI of airflow which is running with docker-compose?
When I try to open it it shows ‘# Your Airflow administrator chose not to expose the configuration, most likely for security reasons.’
Does anybody know how to unblock admin>configuration in UI of airflow which is running with docker-compose?
When I try to open it it shows ‘# Your Airflow administrator chose not to expose the configuration, most likely for security reasons.’
2
Answers
Set an environment variable
AIRFLOW__WEBSERVER__EXPOSE_CONFIG=True
.In Airflow 2.4.3, in the
[webserver]
section ofairflow.cfg
, change the propertyexpose_config
from the defaultFalse
toTrue
ornon-sensitive- only
, depending on what you want to expose to the UI users: