-
Notifications
You must be signed in to change notification settings - Fork 0
/
aca-no-monitoring.json
43 lines (43 loc) · 1.06 KB
/
aca-no-monitoring.json
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
{
"properties": {
"displayName": "Azure Container Apps no monitoring configured",
"policyType": "Custom",
"mode": "All",
"description": "This policy enforces that monitoring is configured for Azure Container Apps environments.",
"metadata": {
"version": "1.0.0",
"category": "Azure Container Apps"
},
"parameters": {
"effect": {
"type": "String",
"metadata": {
"displayName": "Effect",
"description": "Enable or disable the execution of the policy"
},
"allowedValues": [
"Audit",
"Deny",
"Disabled"
],
"defaultValue": "Audit"
}
},
"policyRule": {
"if": {
"allOf": [{
"field": "type",
"equals": "Microsoft.App/managedEnvironments"
},
{
"field": "Microsoft.App/managedEnvironments/appLogsConfiguration.destination",
"exists": false
}
]
},
"then": {
"effect": "[parameters('effect')]"
}
}
}
}