forked from Azure/azure-quickstart-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazuredeploy.parameters.json
30 lines (30 loc) · 1.08 KB
/
azuredeploy.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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"dataLakeStoreUri": {
"value": "https://%yourdatalakestore%.azuredatalakestore.net/webhdfs/v1",
"metadata": {
"description": "URI for your pre-created data lake store."
}
},
"dataLakeStoreServicePrincipalID": {
"value": "%YourDataLakeStoreSPID%",
"metadata": {
"description": "Service Principal ID from your pre-created Azure AD application record"
}
},
"dataLakeStoreServicePrincipalKey": {
"value": "%YourDataLakeStoreSPKey%",
"metadata": {
"description": "Key from your pre-created Azure AD application record"
}
},
"azureSQLConnectionString": {
"value": "%YourAzureSQLConnectionString%",
"metadata": {
"description": "Connection string for your Azure SQL server DB. This must be a valid string as a connection is tested during deployment."
}
}
}
}