From 7cfb2da5b8df2d97184b73de06a177061b053eae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Shan=C3=A9=20Winner?= <43390034+swinner95@users.noreply.github.com> Date: Tue, 1 Oct 2019 17:37:28 -0700 Subject: [PATCH] Update configuration.ipynb --- configuration.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration.ipynb b/configuration.ipynb index f9da90ab..f6abc317 100644 --- a/configuration.ipynb +++ b/configuration.ipynb @@ -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",