You use the following command to store a connection string in Azure Key Vault:
az keyvault secret set --vault-name "examanswer" --name "connectionString" --value "server=10.10.10.100;database=prodSql;user id=webapp;password=4$gg65"
Developers need to retrieve the connection string.
Which URL should they use?
The developers should use the following URL:
https://examanswer.vault.azure.net/secrets/connectionString
This URL uses the format https://{key vault}.vault.azure.net/secrets/{secret name} to retrieve a secret from the vault.