Skip to content

Files

Latest commit

 

History

History
36 lines (23 loc) · 1.4 KB

azure-security-center-enable-standard-subscription.md

File metadata and controls

36 lines (23 loc) · 1.4 KB

Pattern: Missing use of Standard subscription tier for Azure Defender

Issue: -

Description

To benefit from Azure Defender you should use the Standard subscription tier. Enabling Azure Defender extends the capabilities of the free mode to workloads running in private and other public clouds, providing unified security management and threat protection across your hybrid cloud workloads.

Resolution: Enable standard subscription tier to benefit from Azure Defender.

Examples

The following example will fail the azure-security-center-enable-standard-subscription check.

 resource "azurerm_security_center_subscription_pricing" "bad_example" {
   tier          = "Free"
   resource_type = "VirtualMachines"
 }
 

The following example will pass the azure-security-center-enable-standard-subscription check.

 resource "azurerm_security_center_subscription_pricing" "good_example" {
   tier          = "Standard"
   resource_type = "VirtualMachines"
 }
 

Further reading