Skip to content

Commit 4924c87

Browse files
committed
Added comments on valid sample
1 parent 1667b91 commit 4924c87

2 files changed

Lines changed: 30 additions & 14 deletions

File tree

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

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,22 @@
99
"type": "String"
1010
},
1111
"defaultDataLakeStorageAccountName": {
12-
"type": "String"
12+
"type": "String",
13+
"metadata": {
14+
"description": "Data Lake Storage account that you will use for Synapse Workspace."
15+
}
1316
},
1417
"defaultDataLakeStorageFilesystemName": {
15-
"type": "String"
18+
"defaultValue": "workspace",
19+
"type": "String",
20+
"metadata": {
21+
"description": "Container in Data Lake Storage account that you will use for Synapse Workspace."
22+
}
1623
},
1724
"sqlAdministratorLogin": {
1825
"type": "String"
1926
},
20-
"sqlAdministratorLoginPassword": {
27+
"sqlAdministratorPassword": {
2128
"type": "SecureString"
2229
},
2330
"setWorkspaceIdentityRbacOnFilesystem": {
@@ -37,15 +44,24 @@
3744
},
3845
"storageSubscriptionID": {
3946
"defaultValue": "[subscription().subscriptionId]",
40-
"type": "String"
47+
"type": "String",
48+
"metadata": {
49+
"description": "Do not change this value if Data Lake Storage is placed in the same subscription as Synapse Workspace(recommended)."
50+
}
4151
},
4252
"storageResourceGroupName": {
4353
"defaultValue": "[resourceGroup().name]",
44-
"type": "String"
54+
"type": "String",
55+
"metadata": {
56+
"description": "Do not change this value if Data Lake Storage is placed in the same resource group as Synapse Workspace."
57+
}
4558
},
4659
"storageLocation": {
4760
"defaultValue": "[resourceGroup().location]",
48-
"type": "String"
61+
"type": "String",
62+
"metadata": {
63+
"description": "Do not change this value if Data Lake Storage is placed in the same region as Synapse Workspace(recommended)."
64+
}
4965
}
5066
},
5167
"variables": {
@@ -71,7 +87,7 @@
7187
"computeSubnetId": "[parameters('poolSubnetId')]"
7288
},
7389
"sqlAdministratorLogin": "[parameters('sqlAdministratorLogin')]",
74-
"sqlAdministratorLoginPassword": "[parameters('sqlAdministratorLoginPassword')]"
90+
"sqlAdministratorLoginPassword": "[parameters('sqlAdministratorPassword')]"
7591
},
7692
"resources": [
7793
{

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
"contentVersion": "1.0.0.0",
44
"parameters": {
55
"name": {
6-
"value": "jphome1"
6+
"value": ""
77
},
88
"location": {
9-
"value": "westeurope"
9+
"value": ""
1010
},
1111
"defaultDataLakeStorageAccountName": {
12-
"value": "jphome1"
12+
"value": ""
1313
},
1414
"defaultDataLakeStorageFilesystemName": {
15-
"value": "workspace"
15+
"value": ""
1616
},
1717
"sqlAdministratorLogin": {
18-
"value": "cloudSA"
18+
"value": ""
1919
},
2020
"setWorkspaceIdentityRbacOnFilesystem": {
2121
"value": true
@@ -33,10 +33,10 @@
3333
"value": "9932f414-50cd-474d-8a1a-bf0649225d73"
3434
},
3535
"storageResourceGroupName": {
36-
"value": "jphome1"
36+
"value": ""
3737
},
3838
"storageLocation": {
39-
"value": "westeurope"
39+
"value": ""
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)