QuestionQ33
Design and implement an infrastructure to support SAP workloads on AzureYou are deploying an SAP production landscape in Azure.
You need to create an Azure policy that meets the following requirements:
- Limits which applications can be installed on virtual machines.
- Ensures that, when a virtual machine is deployed, the virtual machine has the latest version of the extension to be installed.
How should you complete the policy?
Select
“policyRule”: { “if”: { “allOf”: [ { “field”: “type”, “equals”: “Microsoft.Compute/virtualMachines/extensions” }, { “field”: “Microsoft.Compute/virtualMachines/type”, “notIn”: } ] }, “then”: { “effect”: } ... }
Community Discussion