This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpolicydefinition-deploy_asc_defender_sqlvm.tf
122 lines (117 loc) · 3.09 KB
/
policydefinition-deploy_asc_defender_sqlvm.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# This file was auto generated
resource "azurerm_policy_definition" "deploy_asc_defender_sqlvm" {
name = "Deploy-ASC-Defender-SQLVM"
policy_type = "Custom"
mode = "All"
display_name = "Deploy Azure Defender for Sql on Virtual Machines"
description = "Deploy the Azure Defender settings in Sql Server on Virtual Machines"
metadata = <<METADATA
{
"version": "1.0.0",
"category": "Security Center"
}
METADATA
management_group_name = var.management_group_name
policy_rule = <<POLICYRULE
{
"if": {
"allOf": [
{
"field": "type",
"equals": "Microsoft.Resources/subscriptions"
}
]
},
"then": {
"effect": "[parameters('effect')]",
"details": {
"type": "Microsoft.Security/pricings",
"name": "SqlServerVirtualMachines",
"deploymentScope": "Subscription",
"existenceScope": "Subscription",
"roleDefinitionIds": [
"/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd"
],
"existenceCondition": {
"allOf": [
{
"field": "Microsoft.Security/pricings/pricingTier",
"equals": "[parameters('pricingTier')]"
},
{
"field": "type",
"equals": "Microsoft.Security/pricings"
}
]
},
"deployment": {
"location": "northeurope",
"properties": {
"mode": "incremental",
"parameters": {
"pricingTier": {
"value": "[parameters('pricingTier')]"
}
},
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"pricingTier": {
"type": "string",
"metadata": {
"description": "Azure Defender pricing tier"
}
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.Security/pricings",
"apiVersion": "2018-06-01",
"name": "SqlServerVirtualMachines",
"properties": {
"pricingTier": "[parameters('pricingTier')]"
}
}
],
"outputs": {}
}
}
}
}
}
}
POLICYRULE
parameters = <<PARAMETERS
{
"pricingTier": {
"type": "string",
"metadata": {
"displayName": "Azure Defender pricing tier",
"description": "Azure Defender pricing tier"
},
"allowedValues": [
"Standard",
"Free"
],
"defaultValue": "Standard"
},
"effect": {
"type": "string",
"defaultValue": "DeployIfNotExists",
"allowedValues": [
"DeployIfNotExists",
"Disabled"
],
"metadata": {
"displayName": "Effect",
"description": "Enable or disable the execution of the policy"
}
}
}
PARAMETERS
}
output "policydefinition_deploy_asc_defender_sqlvm" {
value = azurerm_policy_definition.deploy_asc_defender_sqlvm
}