Update azuredeploy.json

This commit is contained in:
Jovan Popovic
2020-01-16 19:37:21 +01:00
parent f67e565e9c
commit e6a99e4809
@@ -10,11 +10,17 @@
"type": "String"
},
"defaultDataLakeStorageAccountName": {
"type": "String"
"type": "String",
"metadata": {
"description": "Data Lake Storage account that you will use for Synapse Workspace."
}
},
"defaultDataLakeStorageFilesystemName": {
"defaultValue": "workspace",
"type": "String"
"type": "String",
"metadata": {
"description": "container in Data Lake Storage account that you will use for Synapse Workspace."
}
},
"sqlAdministratorLogin": {
"type": "String"
@@ -23,20 +29,29 @@
"type": "SecureString"
},
"tagValues": {
"defaultValue": {},
"defaultValue": {"createdWith":"Azure Resource Manager template"},
"type": "Object"
},
"storageSubscriptionID": {
"defaultValue": "[subscription().subscriptionId]",
"type": "String"
"type": "String",
"metadata": {
"description": "Do not change this value if Data Lake Storage is placed in the same subscription as Synapse Workspace(recommended)."
}
},
"storageResourceGroupName": {
"defaultValue": "[resourceGroup().name]",
"type": "String"
"type": "String",
"metadata": {
"description": "Do not change this value if Data Lake Storage is placed in the same resource group as Synapse Workspace."
}
},
"storageLocation": {
"defaultValue": "[resourceGroup().location]",
"type": "String"
"type": "String",
"metadata": {
"description": "Do not change this value if Data Lake Storage is placed in the same region as Synapse Workspace(recommended)."
}
}
},
"variables": {