SIMULATION -
You need to ensure that when administrators deploy resources by using an Azure Resource Manager template, the deployment can access secrets in an Azure key vault named KV11597200.
To complete this task, sign in to the Azure portal.
See the explanation below.
You need to configure an option in the Advanced Access Policy of the key vault.
1. In the Azure portal, type Azure Key Vault in the search box, select Azure Key Vault from the search results then select the key vault named KV11597200.
Alternatively, browse to Azure Key Vault in the left navigation pane.
2. In the properties of the key vault, click on Advanced Access Policies.
3. Tick the checkbox labelled Enable access to Azure Resource Manager for template deployment.
4. Click Save to save the changes.
To ensure that administrators can access secrets in an Azure key vault when deploying resources using an Azure Resource Manager template, you can follow the steps below:
"resources": [ { "type": "Microsoft.KeyVault/vaults/secrets", "apiVersion": "2018-02-14", "name": "[concat(parameters('vaultName'), '/', parameters('secretName'))]", "properties": { "value": "[reference(concat('Microsoft.KeyVault/vaults/', parameters('vaultName')), '2018-02-14').secrets[parameters('secretName')].value]" } } ]
Once these steps are completed, the Azure Resource Manager template deployment should be able to access the secret in the Key Vault.