I am using AzureAppConfigurationPush@1 task for deploying app configuration values in different environment. I am able to add key value pairs sucessfully but I am not finding ways to add Key vault reference.
-task: AzureAppConfigurationPush@1
inputs:
azureSubscription: '${{ parameters.azureResourceManager }}'
ConfigstoreName: '${{ parameters.appConfigName }}'
ConfigurationFile: '${{parameters.configFileName }}'
Separator: ','
Strict: false
I am passing config file name as parameters in which I am giving Json which I export from azure app configuration. When I export app configuration values, key value pair contains uri and its value like this: "AppInsightsKey": "{"uri":"https://.vault.azure.net/secrets/AppInsightsKey"}"
But this doesn't go as Key vault reference using push task but considered as a string completely.
Can you help me understand hot to push key vault reference so that it will automatically create a reference if possible?