I have a VSTS library variable groups connected to my key-vaults in Azure:
More about it you can read here: https://docs.microsoft.com/en-us/azure/devops/pipelines/library/variable-groups?view=vsts&tabs=yaml
In key vaults in Azure I have a list of secrets and list of certificates.
Example key vault secrets:
- AppInsightsInstrumentationKey
- CacheConnectionString
Example certificate:
- GlobalCertificate
Now I can access as variables in releasing these variables, by simple syntax:
- $(GlobalCertificate)
- $(AppInsightsInstrumentationKey)
- $(CacheConnectionString)
My goal is to read thumprint of certificate localted in variable $(GlobalCertificate)
. What's the way to get it?