forked from Azure/review-checklists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazfun_checklist.en.json
175 lines (175 loc) · 5.68 KB
/
azfun_checklist.en.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
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
{
"items": [
{
"category": "BC and DR",
"subcategory": "High Availability",
"text": "Select the right Function hosting plan based on your business & SLO requirements",
"waf": "Reliability",
"service": "Azure Functions",
"guid": "4238f409-2ea0-43be-a06b-2a993c98aa7b",
"id": "A01.01",
"cost": 1,
"severity": "High",
"link": "https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale#overview-of-plans"
},
{
"category": "BC and DR",
"subcategory": "High Availability",
"text": "Leverage Availability Zones where regionally applicable (not available for Consumption tier)",
"waf": "Reliability",
"service": "Azure Functions",
"guid": "a9808100-d640-4f77-ac56-1ec0600f6752",
"id": "A01.02",
"cost": 1,
"severity": "High",
"link": "https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale#overview-of-plans"
},
{
"category": "BC and DR",
"subcategory": "High Availability",
"text": "Consider a Cross-Region DR strategy for critical workloads",
"waf": "Reliability",
"service": "Azure Functions",
"guid": "5969d03e-eacf-4042-b127-73c55e3575fa",
"id": "A01.03",
"cost": 1,
"severity": "Medium",
"link": "https://learn.microsoft.com/en-us/azure/reliability/reliability-functions?tabs=azure-portal#cross-region-disaster-recovery-and-business-continuity"
},
{
"category": "BC and DR",
"subcategory": "High Availability",
"text": "If deploying to an Isolated environment, use or migrate to App Service Environment (ASE) v3",
"waf": "Reliability",
"service": "Azure Functions",
"guid": "47a0aae0-d8a0-43b1-9791-e934dee3754c",
"id": "A01.04",
"cost": 1,
"severity": "High",
"link": "https://learn.microsoft.com/en-us/azure/app-service/environment/intro"
},
{
"category": "BC and DR",
"subcategory": "High Availability",
"text": "Ensure 'Always On' is enabled for all Function Apps running on App Service Plan",
"waf": "Reliability",
"service": "Azure Functions",
"guid": "17232891-f89f-4eaa-90f1-3b34bf798ed5",
"id": "A01.05",
"cost": 1,
"severity": "High",
"link": "https://learn.microsoft.com/en-us/azure/azure-functions/dedicated-plan#always-on"
},
{
"category": "BC and DR",
"subcategory": "High Availability",
"text": "Pair a Function App to its own storage account. Try not to re-use storage accounts for Function Apps unless they are tightly coupled",
"waf": "Reliability",
"service": "Azure Functions",
"guid": "40a325c2-7c0e-49e6-86d8-c273b4dc21ba",
"id": "A01.06",
"cost": 1,
"severity": "Medium",
"link": "https://learn.microsoft.com/en-us/azure/azure-functions/storage-considerations?tabs=azure-cli#shared-storage-accounts"
},
{
"category": "Application Deployment",
"subcategory": "CI/CD",
"text": "Leverage Azure DevOps or GitHub to streamline CI/CD and safeguard your Function App code",
"waf": "Operations",
"service": "Azure Functions",
"guid": "bb42650c-257d-4cb0-822a-131138b8e6f0",
"id": "B01.01",
"cost": 1,
"severity": "Medium",
"link": "https://learn.microsoft.com/en-us/training/modules/deploy-azure-functions/"
}
],
"categories": [
{
"name": "Identity and Access Management"
},
{
"name": "Network Topology and Connectivity"
},
{
"name": "BC and DR"
},
{
"name": "Governance and Security"
},
{
"name": "Cost Governance"
},
{
"name": "Operations"
},
{
"name": "Application Deployment"
}
],
"waf": [
{
"name": "Reliability"
},
{
"name": "Security"
},
{
"name": "Cost"
},
{
"name": "Operations"
},
{
"name": "Performance"
}
],
"status": [
{
"name": "Not verified",
"description": "This check has not been looked at yet"
},
{
"name": "Open",
"description": "There is an action item associated to this check"
},
{
"name": "Fulfilled",
"description": "This check has been verified, and there are no further action items associated to it"
},
{
"name": "Not required",
"description": "Recommendation understood, but not needed by current requirements"
},
{
"name": "N/A",
"description": "Not applicable for current design"
}
],
"severities": [
{
"name": "High"
},
{
"name": "Medium"
},
{
"name": "Low"
}
],
"yesno": [
{
"name": "Yes"
},
{
"name": "No"
}
],
"metadata": {
"name": "Azure Function Review",
"state": "Preview",
"waf": "all",
"timestamp": "April 09, 2024"
}
}