I am trying to set up the SSL settings and LDAP maybe, but it feels I cannot because of the way I got the project, there are variables declared in the same docker-compose.yml like:
x-airflow-common:
&airflow-common
image: ${AIRFLOW_IMAGE_NAME:-airflow_my-airflow-custom}
environment:
&airflow-common-env
AIRFLOW__CORE__FERNET_KEY: ''
AIRFLOW__CORE__DAGS_ARE_PAUSED_AT_CREATION: 'true'
AIRFLOW__CORE__LOAD_EXAMPLES: 'false'
And the thing is the airflow.cfg is done on runtime, my idea is to get it once it is done, and mapping it on docker-compose, but I don’t know if it may work, how can I make this? Thank you