-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaca-allowed-ingress-target-ports.json
64 lines (64 loc) · 1.7 KB
/
aca-allowed-ingress-target-ports.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"properties": {
"displayName": "Azure Container Apps allowed ingress target ports",
"policyType": "Custom",
"mode": "Indexed",
"description": "This policy enables you to restrict the list of ingress target ports for Azure Container Apps.",
"metadata": {
"version": "1.0.0",
"category": "Azure Container Apps"
},
"parameters": {
"listOfAllowedIngressTargetPorts": {
"type": "Array",
"metadata": {
"displayName": "Allowed container ports",
"description": "The list of container ports that can be specified when deploying resources."
},
"defaultValue": [
80,
443
]
},
"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"
},
{
"field": "Microsoft.App/containerApps/configuration.ingress",
"exists": true
},
{
"not": {
"field": "Microsoft.App/containerApps/configuration.ingress",
"equals": ""
}
},
{
"field": "Microsoft.App/containerApps/configuration.ingress.targetPort",
"notIn": "[parameters('listOfAllowedIngressTargetPorts')]"
}
]
},
"then": {
"effect": "[parameters('effect')]"
}
}
}
}