I'm working with Azure logic app for CI/CD deployment and I need to pass the Azure key vault secret URI to use in ARM template.
"actions": {
"HTTP": {
"runAfter": {},
"type": "Http",
"inputs": {
"authentication": {
"audience": "https://vault/azure.net",
"type": "ManagedServiceIdentity"
},
"method": "GET",
"queries": {
"api-version": "2016-10-01"
},
**"uri": "https://<keyvaultname.valut.azure.net/secrets/RG_Name/Secertverion"**
}
},
Anybody can help me to get the secret URI to pass as a parameter in ARM template?
