forked from rbergertd/sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nested-sqldb.parameters.json
42 lines (42 loc) · 1 KB
/
nested-sqldb.parameters.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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"administratorLogin": {
"value": "## TO BE DEFINED ##"
},
"administratorLoginPassword": {
"value": "## TO BE DEFINED ##"
},
"serverName": {
"value": "## TO BE DEFINED ##"
},
"enableAds": {
"value": true
},
"enableVa": {
"value": true
},
"tier": {
"value": "Standard"
},
"dbSkuName": {
"value": "S0"
},
"databaseNames": {
"value": [
"db1",
"db2"
]
},
"databaseCollation": {
"value": "SQL_Latin1_General_CP1_CI_AS"
},
"alertEmailAddresses": {
"value": [
]
}
}
}