-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
FunctionApp_AuditHTTP_Modify.json
79 lines (79 loc) · 2.12 KB
/
FunctionApp_AuditHTTP_Modify.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"properties": {
"displayName": "Configure Function apps to only be accessible over HTTPS",
"policyType": "BuiltIn",
"mode": "Indexed",
"description": "Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.",
"metadata": {
"version": "2.0.0",
"category": "App Service"
},
"version": "2.0.0",
"parameters": {
"effect": {
"type": "string",
"defaultValue": "Modify",
"allowedValues": [
"Modify",
"Disabled"
],
"metadata": {
"displayName": "Effect",
"description": "Enable or disable the execution of the policy"
}
}
},
"policyRule": {
"if": {
"allOf": [
{
"field": "type",
"equals": "Microsoft.Web/sites"
},
{
"field": "kind",
"contains": "functionapp"
},
{
"field": "kind",
"notContains": "workflowapp"
},
{
"anyOf": [
{
"field": "Microsoft.Web/sites/httpsOnly",
"exists": "false"
},
{
"field": "Microsoft.Web/sites/httpsOnly",
"equals": "false"
}
]
}
]
},
"then": {
"effect": "[parameters('effect')]",
"details": {
"roleDefinitionIds": [
"/providers/microsoft.authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772"
],
"conflictEffect": "audit",
"operations": [
{
"condition": "[greaterOrEquals(requestContext().apiVersion, '2019-08-01')]",
"operation": "addOrReplace",
"field": "Microsoft.Web/sites/httpsOnly",
"value": true
}
]
}
}
},
"versions": [
"2.0.0"
]
},
"id": "/providers/Microsoft.Authorization/policyDefinitions/a096cbd0-4693-432f-9374-682f485f23f3",
"name": "a096cbd0-4693-432f-9374-682f485f23f3"
}