ashb commented on pull request #8889:
URL: https://github.com/apache/airflow/pull/8889#issuecomment-631466930


   Not that familiar with Vault myself, but 
https://www.vaultproject.io/docs/concepts/policies looks like you can set 
polcies on a per-path basis:
   
   ```hcl
   # This section grants all access on "secret/*". Further restrictions can be
   # applied to this broad policy, as shown below.
   path "secret/*" {
     capabilities = ["create", "read", "update", "delete", "list"]
   }
   
   # Even though we allowed secret/*, this line explicitly denies
   # secret/super-secret. This takes precedence.
   path "secret/super-secret" {
     capabilities = ["deny"]
   }
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to