I have a text file which I use in a pipeline, this particular file contains secrets that the pipeline uses to authenticate against some service. The file looks like this.
app1|resource1|secret1
app2|resource2|secret2
This file is used to map the secret to each app. I've been told I can use azure key vault to store this info but I'm only seeing options for ssh keys, certificates and key value pair strings.
Any suggestions would be nice to hear. I should also note currently I'm using azure "Secure Files" to store this file, however it's not very intuitive because every time the file needs to be updated, you have to delete the current one, upload a new one then edit the pipeline to add it again.
Plus I need a central place where I can store this file so as to have anyone on my team edit it, and not just me.
