-
Notifications
You must be signed in to change notification settings - Fork 207
/
Feature.ext.json
24 lines (24 loc) · 1.05 KB
/
Feature.ext.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
{
"FeatureName": "Feature",
"Reference": "aka.ms/azsktcp/feature", // This value should be same as original Feature.json
"IsMaintenanceMode": false,
"Controls": [
{
"ControlID": "Azure_Feature_Functionality", // Define the new control id
"Description": "Latest TLS version should be used", // Description for your control
"Id": "Feature1001", // Ensure that all the internal ids are appended with 4 digit integer code
"ControlSeverity": "Medium", // Control the severity
"Automated": "Yes", // Control the automation status
"MethodName": "FunctionToExtend", // Update the method name with the new one provided above
"Recommendation": "Steps to fix the extended control",
"Tags": [
"SDL",
"Best Practice",
"Automated",
"Feature" // Feature specific required Tag (if any)
],
"Enabled": true,
"Rationale": "Logical intention for the extended control"
}
]
}