-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreateUiDefinition.json
More file actions
88 lines (88 loc) · 2.51 KB
/
Copy pathcreateUiDefinition.json
File metadata and controls
88 lines (88 loc) · 2.51 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
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
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"config": {
"isWizard": false,
"basics": {
"description": "Deploy Azure Front Door Log Forwarder to send AFD access logs to Clarity for AI Visibility bot detection.",
"subscription": {
"constraints": {
"validations": []
}
},
"resourceGroup": {
"allowExisting": true
},
"location": {
"label": "Region",
"toolTip": "Select a region that supports Azure Container Apps.",
"allowedValues": [
"australiaeast",
"brazilsouth",
"canadacentral",
"centralus",
"eastasia",
"eastus",
"eastus2",
"francecentral",
"germanywestcentral",
"japaneast",
"koreacentral",
"northcentralus",
"northeurope",
"southcentralus",
"southeastasia",
"swedencentral",
"uksouth",
"westeurope",
"westus",
"westus2",
"westus3"
],
"visible": true
}
}
},
"basics": [
{
"name": "frontDoorSelector",
"type": "Microsoft.Solutions.ResourceSelector",
"label": "Azure Front Door Name",
"toolTip": "Select the Azure Front Door profile whose access logs you want to forward to Clarity.",
"resourceType": "Microsoft.Cdn/profiles",
"constraints": {
"required": true
},
"options": {
"filter": {
"subscription": "onBasics",
"location": "all"
}
}
},
{
"name": "projectId",
"type": "Microsoft.Common.TextBox",
"label": "Clarity Project ID",
"toolTip": "Your Clarity project ID where bot detection data will be sent.",
"constraints": {
"required": true,
"validations": [
{
"regex": "^.+$",
"message": "Project ID is required."
}
]
}
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"frontDoorName": "[basics('frontDoorSelector').name]",
"projectId": "[basics('projectId')]"
}
}
}