-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
test-resources.json
208 lines (208 loc) · 7.51 KB
/
test-resources.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"baseName": {
"type": "string",
"defaultValue": "[resourceGroup().name]",
"metadata": {
"description": "The base resource name."
}
},
"tenantId": {
"type": "string",
"defaultValue": "72f988bf-86f1-41af-91ab-2d7cd011db47",
"metadata": {
"description": "The tenant ID to which the application and resources belong."
}
},
"testApplicationId": {
"type": "string",
"metadata": {
"description": "The application client ID used to run tests."
}
},
"testApplicationOid": {
"type": "string",
"metadata": {
"description": "The client OID to grant access to test resources."
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "The location of the resource. By default, this is the same as the resource group."
}
},
"searchEndpointSuffix": {
"type": "string",
"defaultValue": "search.windows.net",
"metadata": {
"description": "The url suffix to use when accessing the search data plane."
}
},
"storageEndpointSuffix": {
"type": "string",
"defaultValue": "core.windows.net",
"metadata": {
"description": "The url suffix to use when accessing the storage data plane."
}
},
"searchSku": {
"type": "string",
"defaultValue": "basic",
"allowedValues": [
"free",
"basic",
"standard"
],
"metadata": {
"description": "The Search service SKU to create."
}
}
},
"variables": {
"searchServiceName": "[concat('azs-net-', parameters('baseName'))]",
"searchApiVersion": "2021-04-01-preview",
"searchEncryptionLocations": [
"westus2",
"eastus2",
"southcentralus",
"usgovvirginia",
"usgovarizona"
],
"storageAccountName": "[concat(parameters('baseName'), 'stg')]",
"storageApiVersion": "2022-05-01",
"cognitiveServicesAccountName": "[concat(parameters('baseName'), 'cog')]",
"cognitiveServicesApiVersion": "2017-04-18",
"keyVaultName": "[concat(parameters('baseName'), 'kv')]",
"keyVaultApiVersion": "2016-10-01"
},
"resources": [
{
"name": "[variables('searchServiceName')]",
"type": "Microsoft.Search/searchServices",
"apiVersion": "[variables('searchApiVersion')]",
"location": "[parameters('location')]",
"sku": {
"name": "[parameters('searchSku')]"
},
"properties": {
"replicaCount": 1,
"partitionCount": 1,
"hostingMode": "Default",
"publicNetworkAccess": "Enabled",
"networkRuleSet": {
"ipRules": []
}
}
},
{
"name": "[variables('storageAccountName')]",
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "[variables('storageApiVersion')]",
"location": "[parameters('location')]",
"properties": {
"accessTier": "Hot",
"supportsHttpsTrafficOnly": true,
"minimumTlsVersion": "TLS1_2"
},
"sku": {
"name": "Standard_LRS"
},
"kind": "BlobStorage"
},
{
"name": "[variables('cognitiveServicesAccountName')]",
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "[variables('cognitiveServicesApiVersion')]",
"location": "[parameters('location')]",
"sku": {
"name": "S0"
},
"kind": "CognitiveServices",
"properties": {
"apiProperties": { },
"publicNetworkAccess": "Enabled"
}
},
{
"type": "Microsoft.KeyVault/vaults",
"apiVersion": "[variables('keyVaultApiVersion')]",
"name": "[variables('keyVaultName')]",
"condition": "[and(contains(variables('searchEncryptionLocations'), parameters('location')), not(equals(parameters('searchSku'), 'free')))]",
"location": "[parameters('location')]",
"properties": {
"sku": {
"family": "A",
"name": "standard"
},
"tenantId": "[parameters('tenantId')]",
"accessPolicies": [
{
"tenantId": "[parameters('tenantId')]",
"objectId": "[parameters('testApplicationOid')]",
"permissions": {
"certificates": [
"get"
],
"keys": [
"create",
"get",
"purge",
"unwrapKey",
"wrapKey"
],
"secrets": [
"get"
]
}
}
],
"enablePurgeProtection": true,
"enableSoftDelete": true,
"softDeleteRetentionInDays": 7
}
}
],
"outputs": {
"STORAGE_ENDPOINT_SUFFIX": {
"type": "string",
"value": "[parameters('storageEndpointSuffix')]"
},
"SEARCH_ENDPOINT_SUFFIX": {
"type": "string",
"value": "[parameters('searchEndpointSuffix')]"
},
"SEARCH_SERVICE_NAME": {
"type": "string",
"value": "[variables('searchServiceName')]"
},
"SEARCH_ADMIN_API_KEY": {
"type": "string",
"value": "[listAdminKeys(variables('searchServiceName'), variables('searchApiVersion')).primaryKey]"
},
"SEARCH_QUERY_API_KEY": {
"type": "string",
"value": "[listQueryKeys(variables('searchServiceName'), variables('searchApiVersion')).value[0].key]"
},
"SEARCH_STORAGE_NAME": {
"type": "string",
"value": "[variables('storageAccountName')]"
},
"SEARCH_STORAGE_KEY": {
"type": "string",
"value": "[listKeys(variables('storageAccountName'), variables('storageApiVersion')).keys[0].value]"
},
"SEARCH_COGNITIVE_KEY": {
"type": "string",
"value": "[listKeys(variables('cognitiveServicesAccountName'), variables('cognitiveServicesApiVersion')).key1]"
},
"SEARCH_KEYVAULT_URL": {
"type": "string",
"condition": "[and(contains(variables('searchEncryptionLocations'), parameters('location')), not(equals(parameters('searchSku'), 'free')))]",
"value": "[reference(variables('keyVaultName')).vaultUri]"
}
}
}