Skip to content

Commit 89866c2

Browse files
authored
Project workspace create failure (#37703) (#37705)
* fixing sweep job service response parsing issue * fixing sweep job service response parsing issue * raising a work around for cmd job and spark job name lowering case * fixing black issue * fixing serialization issue in sweep job * include black fix * found and fix the issue in compute validation * fixing a corrupt wokspace arm template * fixing the failed test case * updating the date for 1.18.0 release * removing empty section * adding in progress version details * adding IDC code reviewers * correcting the directory path * lint fix * adding change log entry * addressing review comment * fixing ut * addressing api review comment * adding a fix for subnet validation in compute instance * my py fix * fixing autoML serialization issue * formatting * moving auto ML job create API to 2024 * fixing param parity in deployment template between workspace_base and workspace_project
1 parent 0f0fcba commit 89866c2

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

sdk/ml/azure-ai-ml/azure/ai/ml/_arm_deployments/arm_templates/workspace_project.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,17 @@
3939
"description": "Specifies the resource group name of the Azure Machine Learning workspace."
4040
}
4141
},
42+
"associatedResourcePNA": {
43+
"type": "string",
44+
"defaultValue": "Enabled",
45+
"allowedValues": [
46+
"Enabled",
47+
"Disabled"
48+
],
49+
"metadata": {
50+
"description": "Determines the PublicNetworkAccess mode of new workspace-associated resources provisioned alongside with workspace."
51+
}
52+
},
4253
"storageAccountOption": {
4354
"type": "string",
4455
"defaultValue": "new",
@@ -72,6 +83,10 @@
7283
"description": "Determines whether or not to put the storage account behind VNet"
7384
}
7485
},
86+
"storageAccountSubscriptionId": {
87+
"type": "string",
88+
"defaultValue": "[subscription().subscriptionId]"
89+
},
7590
"storageAccountResourceGroupName": {
7691
"type": "string",
7792
"defaultValue": "[parameters('resourceGroupName')]"
@@ -646,7 +661,7 @@
646661
},
647662
"variables": {
648663
"tenantId": "[subscription().tenantId]",
649-
"storageAccount": "[resourceId(parameters('storageAccountResourceGroupName'), 'Microsoft.Storage/storageAccounts', parameters('storageAccountName'))]",
664+
"storageAccount": "[resourceId(parameters('storageAccountSubscriptionId'), parameters('storageAccountResourceGroupName'), 'Microsoft.Storage/storageAccounts', parameters('storageAccountName'))]",
650665
"keyVault": "[resourceId(parameters('keyVaultResourceGroupName'), 'Microsoft.KeyVault/vaults', parameters('keyVaultName'))]",
651666
"containerRegistry": "[resourceId(parameters('containerRegistryResourceGroupName'), 'Microsoft.ContainerRegistry/registries', parameters('containerRegistryName'))]",
652667
"applicationInsights": "[resourceId(parameters('applicationInsightsResourceGroupName'), 'Microsoft.Insights/components', parameters('applicationInsightsName'))]",

0 commit comments

Comments
 (0)