GitHub user potiuk added a comment to the discussion: Multiple secret backend sources
You can roll your own Secrets Backend that will use composition pattern and can combine any number of secret backend https://airflow.apache.org/docs/apache-airflow/stable/security/secrets/secrets-backend/index.html#roll-your-own-secrets-backend The choice we made that this is not a declarative configuration but imperative Python code that you can write - because it gives you far bigger flexibility and way to handle edge cases, sequence or even custom way of routing your secret retrieval methods. That's the power of Python (that you already know if you write Dags and local settings that are also an imperative Python code). GitHub link: https://github.com/apache/airflow/discussions/62072#discussioncomment-15836503 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
