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 +}