-
Notifications
You must be signed in to change notification settings - Fork 2
/
aca-no-readiness-probes.json
49 lines (49 loc) · 1.27 KB
/
aca-no-readiness-probes.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
44
45
46
47
48
49
{
"properties": {
"displayName": "Azure Container Apps no container readiness probes",
"policyType": "Custom",
"mode": "Indexed",
"description": "This policy enforces that all the containers of Azure Containers Apps have readiness probes configured.",
"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/containerApps"
},
{
"count": {
"field": "Microsoft.App/containerApps/template.containers[*].probes[*]",
"where": {
"field": "Microsoft.App/containerApps/template.containers[*].probes[*].type",
"equals": "Readiness"
}
},
"equals": 0
}
]
},
"then": {
"effect": "[parameters('effect')]"
}
}
}
}