-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathlab-defaults-schema.json
More file actions
34 lines (34 loc) · 1.29 KB
/
Copy pathlab-defaults-schema.json
File metadata and controls
34 lines (34 loc) · 1.29 KB
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Lab Defaults",
"description": "Smart defaults for the lab lifecycle wizard. Only include fields you want to override — missing fields are ignored.",
"type": "object",
"properties": {
"groups": {
"type": "array",
"items": { "type": "string" },
"description": "Group-based feature activation names (e.g. [\"GHCPUsers\", \"M365-E5-Users\"]). Each group provisions a feature for the created Entra ID users."
},
"deploymentType": {
"type": "string",
"enum": ["resourcegroup", "subscription", "resourcegroup-with-subscriptionowner"],
"description": "Azure deployment scope."
},
"labsPerSubscription": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"description": "Number of lab environments to pack per Azure subscription."
},
"preferredLocation": {
"type": "string",
"description": "Comma-separated list of preferred Azure regions, in priority order (e.g. \"swedencentral, norwayeast\")."
},
"estimatedDailyCostsUsd": {
"type": "number",
"minimum": 0,
"description": "Estimated daily cost per lab environment in USD. Used for cost forecasting in the lab lifecycle wizard."
}
},
"additionalProperties": false
}