-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpolicy,json
More file actions
227 lines (227 loc) · 10 KB
/
Copy pathpolicy,json
File metadata and controls
227 lines (227 loc) · 10 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{
"mode": "All",
"policyRule": {
"if": {
"allOf": [
{
"field": "type",
"equals": "Microsoft.Network/virtualNetworks/subnets"
},
{
"field": "Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id",
"exists": "true"
},
{
"field": "location",
"equals": "[parameters('region')]"
}
]
},
"then": {
"effect": "[parameters('effect')]",
"details": {
"type": "Microsoft.Network/networkWatchers/flowLogs",
"name": "[concat('NetworkWatcher_', parameters('region'), '/', 'FlowLog-', split(field('id'), '/')[4], '-', split(field('id'), '/')[10])]",
"resourceGroupName": "[parameters('networkWatcherRG')]",
"roleDefinitionIds": [
"/providers/Microsoft.Authorization/roleDefinitions/7dd92bfa-9f39-42c6-97c6-37284ccdc2e7"
],
"evaluationDelay": "PT1M",
"existenceCondition": {
"allOf": [
{
"field": "Microsoft.Network/networkWatchers/flowLogs/targetResourceId",
"equals": "[field('id')]"
},
{
"field": "Microsoft.Network/networkWatchers/flowLogs/storageId",
"equals": "[parameters('storageId')]"
},
{
"field": "location",
"equals": "[parameters('region')]"
}
]
},
"deployment": {
"properties": {
"mode": "incremental",
"template": {
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"storageId": {
"type": "String"
},
"workspaceResourceId": {
"type": "String"
},
"workspaceRegion": {
"type": "String"
},
"retentionDays": {
"type": "String"
},
"timeInterval": {
"type": "String"
},
"location": {
"type": "String"
},
"targetResourceId": {
"type": "String"
},
"networkWatcherName": {
"type": "String"
},
"networkWatcherRG": {
"type": "String"
},
"flowlogName": {
"type": "String"
}
},
"resources": [
{
"type": "Microsoft.Network/networkWatchers/flowLogs",
"apiVersion": "2022-09-01",
"location": "[parameters('location')]",
"name": "[concat(parameters('networkWatcherName'), '/', parameters('flowlogName'))]",
"properties": {
"targetResourceId": "[parameters('targetResourceId')]",
"storageId": "[parameters('storageId')]",
"enabled": true,
"flowAnalyticsConfiguration": {
"networkWatcherFlowAnalyticsConfiguration": {
"enabled": true,
"workspaceRegion": "[parameters('workspaceRegion')]",
"workspaceResourceId": "[parameters('workspaceResourceId')]",
"trafficAnalyticsInterval": "[parameters('timeInterval')]"
}
},
"retentionPolicy": {
"enabled": true,
"days": "[parameters('retentionDays')]"
},
"format": {
"type": "JSON",
"version": "2"
}
}
}
]
},
"parameters": {
"storageId": {
"value": "[parameters('storageId')]"
},
"workspaceResourceId": {
"value": "[parameters('workspaceResourceId')]"
},
"workspaceRegion": {
"value": "[parameters('workspaceRegion')]"
},
"retentionDays": {
"value": "[parameters('retentionDays')]"
},
"timeInterval": {
"value": "[parameters('timeInterval')]"
},
"location": {
"value": "[parameters('region')]"
},
"targetResourceId": {
"value": "[field('id')]"
},
"networkWatcherName": {
"value": "[concat('NetworkWatcher_', parameters('region'))]"
},
"networkWatcherRG": {
"value": "[parameters('networkWatcherRG')]"
},
"flowlogName": {
"value": "[concat('FlowLog-', split(field('id'), '/')[4], '-', split(field('id'), '/')[10])]"
}
}
}
}
}
}
},
"parameters": {
"effect": {
"type": "String",
"metadata": {
"displayName": "Effect",
"description": "Enable or disable the execution of the policy"
},
"allowedValues": [
"DeployIfNotExists",
"Disabled"
],
"defaultValue": "DeployIfNotExists"
},
"region": {
"type": "String",
"metadata": {
"displayName": "Flow Log Region",
"description": "Configures flow logs in the selected region only.",
"strongType": "location"
}
},
"networkWatcherRG": {
"type": "String",
"metadata": {
"displayName": "Network Watchers RG",
"description": "The name of the resource group where the flowLog resources will be created. This will be used only if a deployment is required.",
"strongType": "existingResourceGroups"
},
"defaultValue": "NetworkWatcherRG"
},
"storageId": {
"type": "String",
"metadata": {
"displayName": "Storage Account ID",
"description": "The resource ID of the storage account where flow logs will be sent. Use a storage account in the same region specified with the 'region' parameter.",
"strongType": "Microsoft.Storage/storageAccounts"
}
},
"retentionDays": {
"type": "String",
"metadata": {
"displayName": "Number of days to retain flow logs",
"description": "The number of days for which flow log data will be retained in the storage account. Set to 0 for indefinite retention."
},
"defaultValue": "30"
},
"workspaceResourceId": {
"type": "String",
"metadata": {
"displayName": "Workspace Resource ID",
"description": "Log Analytics workspace resource id for Traffic Analytics.",
"strongType": "Microsoft.OperationalInsights/workspaces",
"assignPermissions": true
}
},
"workspaceRegion": {
"type": "String",
"metadata": {
"displayName": "Workspace Region",
"description": "The region of the Log Analytics workspace for Traffic Analytics.",
"strongType": "location"
}
},
"timeInterval": {
"type": "String",
"metadata": {
"displayName": "Traffic analytics processing interval in minutes",
"description": "Traffic analytics processes blobs at the selected frequency."
},
"allowedValues": [
"10",
"60"
],
"defaultValue": "60"
}
}
}