mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
59 lines
2.1 KiB
JSON
59 lines
2.1 KiB
JSON
{
|
|
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
|
|
"contentVersion": "1.0.0.0",
|
|
"parameters": {
|
|
"name": {
|
|
"type": "String"
|
|
},
|
|
"sqlAdministratorLogin": {
|
|
"type": "String"
|
|
},
|
|
"sqlAdministratorPassword": {
|
|
"type": "SecureString"
|
|
},
|
|
"tagValues": {
|
|
"defaultValue": {"Created with":"Synapse Azure Resource Manager deploment template"},
|
|
"type": "Object"
|
|
}
|
|
},
|
|
"resources": [
|
|
{
|
|
"type": "Microsoft.Resources/deployments",
|
|
"apiVersion": "2018-05-01",
|
|
"name": "storage",
|
|
"properties": {
|
|
"mode": "Incremental",
|
|
"templateLink": {
|
|
"uri": "[uri(deployment().properties.templateLink.uri, '/JocaPC/sql-server-samples/synapse/samples/manage/synapse-analytics/storage/azuredeploy.json')]",
|
|
"contentVersion": "1.0.0.0"
|
|
},
|
|
"parameters":{
|
|
"storageAccount":{"value": "[parameters('name')]"}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "Microsoft.Resources/deployments",
|
|
"apiVersion": "2018-05-01",
|
|
"name": "workspace",
|
|
"properties": {
|
|
"mode": "Incremental",
|
|
"templateLink": {
|
|
"uri": "[uri(deployment().properties.templateLink.uri, '/JocaPC/sql-server-samples/synapse/samples/manage/synapse-analytics/workspace/azuredeploy.json')]",
|
|
"contentVersion": "1.0.0.0"
|
|
},
|
|
"parameters":{
|
|
"name":{"value": "[parameters('name')]"},
|
|
"sqlAdministratorLogin":{"value": "[parameters('sqlAdministratorLogin')]"},
|
|
"sqlAdministratorPassword":{"value": "[parameters('sqlAdministratorPassword')]"},
|
|
"defaultDataLakeStorageAccountName":{"value": "[parameters('name')]"},
|
|
"tagValues":{"value": "[parameters('tagValues')]"}
|
|
}
|
|
},
|
|
"dependsOn": [
|
|
"storage"
|
|
]
|
|
}
|
|
],
|
|
"outputs": {}
|
|
} |