-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolicydefinition-deploy_sql_auditingsettings.tf
108 lines (103 loc) · 3.5 KB
/
policydefinition-deploy_sql_auditingsettings.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
# This file was auto generated
resource "azurerm_policy_definition" "deploy_sql_auditingsettings" {
name = "Deploy-Sql-AuditingSettings"
policy_type = "Custom"
mode = "All"
display_name = "Deploy-Sql-AuditingSettings"
description = "Configures SQL Server"
management_group_name = var.management_group_name
policy_rule = <<POLICYRULE
{
"if": {
"field": "type",
"equals": "Microsoft.Sql/servers/databases"
},
"then": {
"effect": "deployIfNotExists",
"details": {
"type": "Microsoft.Sql/servers/databases/auditingSettings",
"name": "default",
"existenceCondition": {
"allOf": [
{
"field": "Microsoft.Sql/servers/databases/auditingSettings/state",
"equals": "enabled"
},
{
"field": "Microsoft.Sql/servers/databases/auditingSettings/isAzureMonitorTargetEnabled",
"equals": "true"
}
]
},
"deployment": {
"properties": {
"mode": "incremental",
"template": {
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string"
},
"sqlServerName": {
"type": "string"
},
"sqlServerDataBaseName": {
"type": "string"
}
},
"variables": {},
"resources": [
{
"name": "[concat( parameters('sqlServerName'),'/',parameters('sqlServerDataBaseName'),'/default')]",
"type": "Microsoft.Sql/servers/databases/auditingSettings",
"apiVersion": "2017-03-01-preview",
"properties": {
"state": "enabled",
"auditActionsAndGroups": [
"BATCH_COMPLETED_GROUP",
"DATABASE_OBJECT_CHANGE_GROUP",
"SCHEMA_OBJECT_CHANGE_GROUP",
"BACKUP_RESTORE_GROUP",
"APPLICATION_ROLE_CHANGE_PASSWORD_GROUP",
"DATABASE_PRINCIPAL_CHANGE_GROUP",
"DATABASE_PRINCIPAL_IMPERSONATION_GROUP",
"DATABASE_ROLE_MEMBER_CHANGE_GROUP",
"USER_CHANGE_PASSWORD_GROUP",
"DATABASE_OBJECT_OWNERSHIP_CHANGE_GROUP",
"DATABASE_OBJECT_PERMISSION_CHANGE_GROUP",
"DATABASE_PERMISSION_CHANGE_GROUP",
"SCHEMA_OBJECT_PERMISSION_CHANGE_GROUP",
"SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP",
"FAILED_DATABASE_AUTHENTICATION_GROUP"
],
"isAzureMonitorTargetEnabled": true
}
}
],
"outputs": {}
},
"parameters": {
"location": {
"value": "[field('location')]"
},
"sqlServerName": {
"value": "[first(split(field('fullname'),'/'))]"
},
"sqlServerDataBaseName": {
"value": "[field('name')]"
}
}
}
},
"roleDefinitionIds": [
"/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c"
]
}
}
}
POLICYRULE
}
output "policydefinition_deploy_sql_auditingsettings" {
value = azurerm_policy_definition.deploy_sql_auditingsettings
}