I have a function app that is deployed using Azure Container Apps. Azure Functions supports several secret repositories. Since blob
isn't really convenient for me, I'm currently using keyvault
. This has the disadvantage that I have to provide a Key Vault only for some function keys.
As I understand it, Azure Container Apps are just based on Kubernetes and their secrets are just Kubernetes secrets. Since kubernetes
is also a supported key store for function apps, is it possible to use it as a secret store with Azure Container Apps?
Asked
Active
Viewed 60 times
0

Christian Klemm
- 1,455
- 5
- 28
- 49
1 Answers
0
No, that's not possible currently since the app doesn't have access to create/update kubernetes secrets in ACA.

ahmelsayed
- 7,125
- 3
- 28
- 40
-
That's sad to hear. Is there any plan to implement access to ACA secrets for Function Apps? – Christian Klemm Mar 23 '23 at 10:56