OnlineMedicine.parameters.json
There are multiple ways to send parameters to ARM templates. One of the ways we saw earlier was by sending parameters using PowerShell. Another option is to send parameters to the ARM template is by way of the json
file. In this json
file, the parameters section contains all the parameters with their corresponding values. While deploying the template, New-AzureRMResourceGroupDeployment
. TemplateParameterFile
argument can be used to specify the parameters file. All parameters defined in the parameters file will be passed as parameters to the ARM template. Also, this is an ideal approach to send Azure Key Vault-related parameters and their values to the template. The OnlineMedicine.parameters.json
file contains only parameters related to values that are stored in the Azure Key Vault. The vault is referred using its unique identifier, and there is a special capability provided by templates to refer to the Azure Key Vault using reference keywords.
It is to be noted...