Skip to content

Commit 1667b91

Browse files
committed
Adding downloaded template
1 parent f3c7cbc commit 1667b91

2 files changed

Lines changed: 19 additions & 37 deletions

File tree

samples/manage/synapse-analytics/workspace/azuredeploy.json

Lines changed: 12 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,18 @@
66
"type": "String"
77
},
88
"location": {
9-
"defaultValue": "[resourceGroup().location]",
109
"type": "String"
1110
},
1211
"defaultDataLakeStorageAccountName": {
13-
"type": "String",
14-
"metadata": {
15-
"description": "Data Lake Storage account that you will use for Synapse Workspace."
16-
}
12+
"type": "String"
1713
},
1814
"defaultDataLakeStorageFilesystemName": {
1915
"type": "String"
2016
},
2117
"sqlAdministratorLogin": {
2218
"type": "String"
2319
},
24-
"sqlAdministratorPassword": {
20+
"sqlAdministratorLoginPassword": {
2521
"type": "SecureString"
2622
},
2723
"setWorkspaceIdentityRbacOnFilesystem": {
@@ -36,38 +32,25 @@
3632
"type": "String"
3733
},
3834
"tagValues": {
39-
"defaultValue": {"createdWith":"Azure Resource Manager template"},
35+
"defaultValue": {},
4036
"type": "Object"
4137
},
4238
"storageSubscriptionID": {
4339
"defaultValue": "[subscription().subscriptionId]",
44-
"type": "String",
45-
"metadata": {
46-
"description": "Do not change this value if Data Lake Storage is placed in the same subscription as Synapse Workspace(recommended)."
47-
}
40+
"type": "String"
4841
},
4942
"storageResourceGroupName": {
5043
"defaultValue": "[resourceGroup().name]",
51-
"type": "String",
52-
"metadata": {
53-
"description": "Do not change this value if Data Lake Storage is placed in the same resource group as Synapse Workspace."
54-
}
44+
"type": "String"
5545
},
5646
"storageLocation": {
5747
"defaultValue": "[resourceGroup().location]",
58-
"type": "String",
59-
"metadata": {
60-
"description": "Do not change this value if Data Lake Storage is placed in the same region as Synapse Workspace(recommended)."
61-
}
48+
"type": "String"
6249
}
6350
},
6451
"variables": {
6552
"storageBlobDataContributorRoleID": "ba92f5b4-2d11-453d-a403-e96b0029c9fe",
66-
"defaultDataLakeStorageAccountUrl": "[concat('https://', parameters('defaultDataLakeStorageAccountName'), '.dfs.core.windows.net')]",
67-
"poolSubnetId": {
68-
"defaultValue": "",
69-
"type": "String"
70-
}
53+
"defaultDataLakeStorageAccountUrl": "[concat('https://', parameters('defaultDataLakeStorageAccountName'), '.dfs.core.windows.net')]"
7154
},
7255
"resources": [
7356
{
@@ -85,7 +68,7 @@
8568
"filesystem": "[parameters('defaultDataLakeStorageFilesystemName')]"
8669
},
8770
"virtualNetworkProfile": {
88-
"computeSubnetId": "[variables('poolSubnetId')]"
71+
"computeSubnetId": "[parameters('poolSubnetId')]"
8972
},
9073
"sqlAdministratorLogin": "[parameters('sqlAdministratorLogin')]",
9174
"sqlAdministratorLoginPassword": "[parameters('sqlAdministratorLoginPassword')]"
@@ -102,7 +85,8 @@
10285
"properties": {
10386
"startIpAddress": "0.0.0.0",
10487
"endIpAddress": "255.255.255.255"
105-
}
88+
},
89+
"condition": "[parameters('allowAllConnections')]"
10690
}
10791
]
10892
},
@@ -136,7 +120,8 @@
136120
}
137121
},
138122
"subscriptionId": "[parameters('storageSubscriptionID')]",
139-
"resourceGroup": "[parameters('storageResourceGroupName')]"
123+
"resourceGroup": "[parameters('storageResourceGroupName')]",
124+
"condition": "[parameters('setWorkspaceIdentityRbacOnFilesystem')]"
140125
}
141126
],
142127
"outputs": {}

samples/manage/synapse-analytics/workspace/azuredeploy.parameters.json

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,19 @@
33
"contentVersion": "1.0.0.0",
44
"parameters": {
55
"name": {
6-
"value": ""
6+
"value": "jphome1"
77
},
88
"location": {
9-
"value": ""
9+
"value": "westeurope"
1010
},
1111
"defaultDataLakeStorageAccountName": {
12-
"value": ""
12+
"value": "jphome1"
1313
},
1414
"defaultDataLakeStorageFilesystemName": {
1515
"value": "workspace"
1616
},
1717
"sqlAdministratorLogin": {
18-
"value": ""
19-
},
20-
"sqlAdministratorLoginPassword": {
21-
"value": null
18+
"value": "cloudSA"
2219
},
2320
"setWorkspaceIdentityRbacOnFilesystem": {
2421
"value": true
@@ -33,13 +30,13 @@
3330
"value": {}
3431
},
3532
"storageSubscriptionID": {
36-
"value": ""
33+
"value": "9932f414-50cd-474d-8a1a-bf0649225d73"
3734
},
3835
"storageResourceGroupName": {
39-
"value": ""
36+
"value": "jphome1"
4037
},
4138
"storageLocation": {
42-
"value": ""
39+
"value": "westeurope"
4340
}
4441
}
4542
}

0 commit comments

Comments
 (0)