Skip to content

Commit ceb6ea7

Browse files
committed
Blank workspace template
1 parent 8ba1e19 commit ceb6ea7

2 files changed

Lines changed: 71 additions & 0 deletions

File tree

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
3+
"contentVersion": "1.0.0.1",
4+
"parameters": {
5+
"name": {
6+
"type": "String"
7+
},
8+
"sqlAdministratorLogin": {
9+
"type": "String"
10+
},
11+
"sqlAdministratorPassword": {
12+
"type": "SecureString"
13+
},
14+
"tagValues": {
15+
"defaultValue": {"Created with":"Synapse Azure Resource Manager deploment template"},
16+
"type": "Object"
17+
}
18+
},
19+
"resources": [
20+
{
21+
"type": "Microsoft.Resources/deployments",
22+
"apiVersion": "2018-05-01",
23+
"name": "storage",
24+
"properties": {
25+
"mode": "Incremental",
26+
"templateLink": {
27+
"uri": "[uri(deployment().properties.templateLink.uri, '/storage/azuredeployment.json')]",
28+
"contentVersion": "1.0.0.0"
29+
},
30+
"parameters":{
31+
"storageAccount":{"value": "[parameters('name')]"}
32+
}
33+
}
34+
},
35+
{
36+
"type": "Microsoft.Resources/deployments",
37+
"apiVersion": "2018-05-01",
38+
"name": "workspace",
39+
"properties": {
40+
"mode": "Incremental",
41+
"templateLink": {
42+
"uri": "[uri(deployment().properties.templateLink.uri, '/workspace/azuredeploy.json')]",
43+
"contentVersion": "1.0.0.0"
44+
},
45+
"parameters":{
46+
"name":{"value": "[parameters('name')]"},
47+
"sqlAdministratorLogin":{"value": "[parameters('sqlAdministratorLogin')]"},
48+
"sqlAdministratorPassword":{"value": "[parameters('sqlAdministratorPassword')]"},
49+
"defaultDataLakeStorageAccountName":{"value": "[parameters('name')]"},
50+
"tagValues":{"value": "[parameters('tagValues')]"}
51+
}
52+
},
53+
"dependsOn": [
54+
"storage"
55+
]
56+
}
57+
],
58+
"outputs": {}
59+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Deploy Azure Synapse workspace
2+
3+
This template deploys Azure Synapse workspace with underlying Data Lake Storage.
4+
5+
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fjocapc%2Fsql-server-samples%2Fsynapse%2Fsamples%2Fmanage%2Fsynapse-analytics%2Fazuredeploy.json" target="_blank">
6+
<img src="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/1-CONTRIBUTION-GUIDE/images/deploytoazure.png"/>
7+
</a>
8+
<a href="http://armviz.io/#/?load=https%3A%2F%2Fraw.githubusercontent.com%2Fjocapc%2Fsql-server-samples%2Fsynapse%2Fsamples%2Fmanage%2Fsynapse-analytics%2Fworkspace%2Fazuredeploy.json" target="_blank">
9+
<img src="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/1-CONTRIBUTION-GUIDE/images/visualizebutton.png"/>
10+
</a>
11+
12+
`Tags: Azure, Synapse, Analytics`

0 commit comments

Comments
 (0)