moved some variables to parameters

This commit is contained in:
Jovan Popovic
2020-01-16 17:54:00 +01:00
parent 1b14cb9cbc
commit f67e565e9c
@@ -25,22 +25,6 @@
"tagValues": {
"defaultValue": {},
"type": "Object"
}
},
"variables": {
"storageBlobDataContributorRoleID": "ba92f5b4-2d11-453d-a403-e96b0029c9fe",
"defaultDataLakeStorageAccountUrl": "[concat('https://', parameters('defaultDataLakeStorageAccountName'), '.dfs.core.windows.net')]",
"setWorkspaceIdentityRbacOnFilesystem": {
"defaultValue": true,
"type": "Bool"
},
"allowAllConnections": {
"defaultValue": true,
"type": "Bool"
},
"poolSubnetId": {
"defaultValue": "",
"type": "String"
},
"storageSubscriptionID": {
"defaultValue": "[subscription().subscriptionId]",
@@ -55,6 +39,14 @@
"type": "String"
}
},
"variables": {
"storageBlobDataContributorRoleID": "ba92f5b4-2d11-453d-a403-e96b0029c9fe",
"defaultDataLakeStorageAccountUrl": "[concat('https://', parameters('defaultDataLakeStorageAccountName'), '.dfs.core.windows.net')]",
"poolSubnetId": {
"defaultValue": "",
"type": "String"
}
},
"resources": [
{
"type": "Microsoft.Synapse/workspaces",
@@ -89,7 +81,7 @@
"startIpAddress": "0.0.0.0",
"endIpAddress": "255.255.255.255"
},
"condition": "[variables('allowAllConnections')]"
"condition": true
}
]
},
@@ -122,9 +114,9 @@
]
}
},
"subscriptionId": "[variables('storageSubscriptionID')]",
"resourceGroup": "[variables('storageResourceGroupName')]",
"condition": "[variables('setWorkspaceIdentityRbacOnFilesystem')]"
"subscriptionId": "[parameters('storageSubscriptionID')]",
"resourceGroup": "[parameters('storageResourceGroupName')]",
"condition": true
}
],
"outputs": {}