From 2974e86aa02d3c7869c91a9481c35b5be705ab12 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 15:59:06 -0700 Subject: [PATCH] Update configuration.ipynb --- configuration.ipynb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configuration.ipynb b/configuration.ipynb index b89b6e00..a8f498d3 100644 --- a/configuration.ipynb +++ b/configuration.ipynb @@ -230,11 +230,15 @@ "from azureml.core import Workspace\n", "\n", "# Create the workspace using the specified parameters\n", + "# By default, the workspace created is of "Basic" type, to create an "Enterprise" workspace, please specify sku = enterprise. + "#To learn more about the Enterprise SKU please visit www... + "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", + " sku = enterprise,\n", " exist_ok = True)\n", "ws.get_details()\n", "\n", @@ -380,4 +384,4 @@ }, "nbformat": 4, "nbformat_minor": 2 -} \ No newline at end of file +}