Update configuration.ipynb

This commit is contained in:
Shané Winner
2019-10-01 17:37:28 -07:00
committed by GitHub
parent e5adb4af3a
commit 7cfb2da5b8

View File

@@ -230,14 +230,14 @@
"source": [
"from azureml.core import Workspace\n",
"\n",
"# Create the workspace using the specified parameters\n",
"# Create the workspace using the specified parameters\n",
"# To create an Enterprise workspace, please specify the sku = enterprise\n",
"ws = Workspace.create(name = workspace_name,\n",
" subscription_id = subscription_id,\n",
" resource_group = resource_group, \n",
" location = workspace_region,\n",
" create_resource_group = True,\n",
"# To create an Enterprise workspace, please set the sku = enterprise\n",
" create_resource_group = True,\n",
" sku = basic,\n",
" exist_ok = True)\n",
"ws.get_details()\n",