Apologies if this is a stupid question but is this the correct syntax to refer a secret in a JSON file? For example, here is my local.settings.json file
{
"IsEncrypted": false,
"Values": {
"Token": "@Microsoft.KeyVault(SecretUri=https://test.vault.azure.net/secrets/token/78895416d0f44fdc892d2cb)"
}
}
I'm trying to deploy an Azure Function through Azure CI pipeline that contains a token that is stored as a secret in Azure Key Vault. Thanks.