Complete the code to specify the compliance standard for Azure Policy assignment.
az policy assignment create --name 'SecureStorage' --policy 'StorageEncryption' --params '{"complianceStandard": "[1]"}'
The ISO standard is commonly specified in Azure Policy parameters for compliance.
Complete the code to enable Azure Compliance Manager for GDPR.
az compliance manager assessment create --name 'GDPRAssessment' --standard '[1]'
Azure Compliance Manager supports GDPR assessments to help manage data privacy.
Fix the error in the Azure CLI command to list SOC compliance reports.
az security compliance list --standard [1]The correct standard to list SOC compliance reports is SOC.
Fill both blanks to create an Azure Policy definition targeting ISO compliance and enabling auditing.
az policy definition create --name 'ISOComplianceAudit' --rules '{"if": {"field": "[1]"}, "then": {"effect": "[2]"}}'
The policy targets the complianceStandard field and uses the audit effect to monitor compliance.
Fill all three blanks to configure an Azure Security Center compliance scan for GDPR with a specific resource group and enable continuous export.
az security compliance scan create --name 'GDPRScan' --standard [1] --resource-group [2] --export-settings [3]
The scan targets the GDPR standard, runs on MyResourceGroup, and has continuous export enabled.