Replies: 1 comment 1 reply
-
|
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). |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to use more than one secret backend at a time? Right now we are using Hashicorp Vault, which only admins can edit, for both connection and variable secrets. We want to keep that, but also to setup second Vault instance with additional access for developers. I.e. like this
Beta Was this translation helpful? Give feedback.
All reactions