Does anyone have a good azure service for config m...
# azure
k
Does anyone have a good azure service for config management? I'd like to export all my config (endpoints, secrets, connection strings, hostnames etc...) to have 1 consolidated place, currently, it's spread over 10 odd pulumi stacks In AWS, I'd use SSM Parameter store, but Azure App Configuraton is 1) not supported by Terraform or Pulumi and 2) expensive
c
The best service for this would be Azure Key Vault.
k
I was afraid that would be the answer 🙂
I'm doing that with secrets now, but it's a terrible interface compared to SSM Parameters
This is the presentation on the console
its 3 clicks to get to the tags which I put the description of the resource in 🙂
horrible UX
anyway, thanks 🙂
c
That UX depends on how you do it. Plus, if you don't care about encryption of values in the UI / API then maybe cosmos DB or storage accounts tables might be enough https://docs.microsoft.com/en-us/azure/cosmos-db/table-storage-overview
k
must be encrypted & hidden and RBAC'd for secrets
c
In which case it'll be Key Vault. Understand though that RBAC (for now) only works on the vault, not on secrets.
👍 1