Skip to content

Commit 1b14cb9

Browse files
committed
Updates
1 parent 3a38913 commit 1b14cb9

2 files changed

Lines changed: 16 additions & 13 deletions

File tree

samples/manage/synapse-analytics/storage/readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ This template deploys Azure Storage account for Synapse workspace
99
<img src="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/1-CONTRIBUTION-GUIDE/images/visualizebutton.png"/>
1010
</a>
1111

12+
When you create storage, use [this link](https://portal.azure.com/?feature.customportal=false&feature.canmodifystamps=true&SqlAzureExtension=synapse&microsoft_azure_synapse_assettypeoptions=%7B%22SynapseWorkspace%22%3A%7B%22options%22%3A%22%22%7D%2C%22SparkPool%22%3A%7B%22options%22%3A%22hideassettype%22%7D%7D&microsoft_azure_marketplace_ItemHideKey=SynapseExtensionPreview#blade/Microsoft_Azure_Marketplace/MarketplaceOffersBlade/selectedMenuItemId/home/searchQuery/Azure%2BSynapse%2BAnalytics%2B(preview)
13+
) to create Azure Synapse Analytics workspace (not former DataWarehouse) and assign the Azure Storage account created with this template.
14+
1215
`Tags: Azure, Synapse, Storage`

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@
2222
"sqlAdministratorPassword": {
2323
"type": "SecureString"
2424
},
25+
"tagValues": {
26+
"defaultValue": {},
27+
"type": "Object"
28+
}
29+
},
30+
"variables": {
31+
"storageBlobDataContributorRoleID": "ba92f5b4-2d11-453d-a403-e96b0029c9fe",
32+
"defaultDataLakeStorageAccountUrl": "[concat('https://', parameters('defaultDataLakeStorageAccountName'), '.dfs.core.windows.net')]",
2533
"setWorkspaceIdentityRbacOnFilesystem": {
2634
"defaultValue": true,
2735
"type": "Bool"
@@ -34,10 +42,6 @@
3442
"defaultValue": "",
3543
"type": "String"
3644
},
37-
"tagValues": {
38-
"defaultValue": {},
39-
"type": "Object"
40-
},
4145
"storageSubscriptionID": {
4246
"defaultValue": "[subscription().subscriptionId]",
4347
"type": "String"
@@ -51,10 +55,6 @@
5155
"type": "String"
5256
}
5357
},
54-
"variables": {
55-
"storageBlobDataContributorRoleID": "ba92f5b4-2d11-453d-a403-e96b0029c9fe",
56-
"defaultDataLakeStorageAccountUrl": "[concat('https://', parameters('defaultDataLakeStorageAccountName'), '.dfs.core.windows.net')]"
57-
},
5858
"resources": [
5959
{
6060
"type": "Microsoft.Synapse/workspaces",
@@ -71,7 +71,7 @@
7171
"filesystem": "[parameters('defaultDataLakeStorageFilesystemName')]"
7272
},
7373
"virtualNetworkProfile": {
74-
"computeSubnetId": "[parameters('poolSubnetId')]"
74+
"computeSubnetId": "[variables('poolSubnetId')]"
7575
},
7676
"sqlAdministratorLogin": "[parameters('sqlAdministratorLogin')]",
7777
"sqlAdministratorLoginPassword": "[parameters('sqlAdministratorPassword')]"
@@ -89,7 +89,7 @@
8989
"startIpAddress": "0.0.0.0",
9090
"endIpAddress": "255.255.255.255"
9191
},
92-
"condition": "[parameters('allowAllConnections')]"
92+
"condition": "[variables('allowAllConnections')]"
9393
}
9494
]
9595
},
@@ -122,9 +122,9 @@
122122
]
123123
}
124124
},
125-
"subscriptionId": "[parameters('storageSubscriptionID')]",
126-
"resourceGroup": "[parameters('storageResourceGroupName')]",
127-
"condition": "[parameters('setWorkspaceIdentityRbacOnFilesystem')]"
125+
"subscriptionId": "[variables('storageSubscriptionID')]",
126+
"resourceGroup": "[variables('storageResourceGroupName')]",
127+
"condition": "[variables('setWorkspaceIdentityRbacOnFilesystem')]"
128128
}
129129
],
130130
"outputs": {}

0 commit comments

Comments
 (0)