-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.json
34 lines (34 loc) · 1012 Bytes
/
template.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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"accounts_TextToSpeechTest_name": {
"defaultValue": "TextToSpeechTest",
"type": "String"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2022-03-01",
"name": "[parameters('accounts_TextToSpeechTest_name')]",
"location": "northeurope",
"sku": {
"name": "F0"
},
"kind": "SpeechServices",
"identity": {
"type": "None"
},
"properties": {
"networkAcls": {
"defaultAction": "Allow",
"virtualNetworkRules": [],
"ipRules": []
},
"publicNetworkAccess": "Enabled"
}
}
]
}