GitHub user Zingeryo created a discussion: Multiple secret backend sources

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
```
[secrets]
backend = airflow.providers.hashicorp.secrets.vault.VaultBackend

backend_kwargs =
    {
      "connections_path": "airflow/connections",
      "variables_path": "airflow/variables",
      "mount_point": "project",
      "url": "https://vault.domain.com";
    },
    {
      "variables_path": "airflow/variables",
      "mount_point": "project",
      "url": "https://vault-dev.domain.com";
    }
```

GitHub link: https://github.com/apache/airflow/discussions/62072

----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]

Reply via email to