Skip to content

Lab 05 Add Dev workspace creation step before environment-specific data asset creation #75

Description

The lab currently asks learners to create a production workspace and then immediately proceeds to creating development and production data assets.

However, the development workspace and resource group are never explicitly created before those commands are used.

Add a new step between:

Step 5: "Plan the commands that would create the production resource group and workspace..."

and

Step 6: "Finally, plan the data assets that keep development and production data separate..."

The new step should create the development resource group and Azure Machine Learning workspace:

Create the dev resource group

az group create --name $DEV_RESOURCE_GROUP --location $RANDOM_REGION

Create the dev Azure Machine Learning workspace

az ml workspace create
--name $DEV_WORKSPACE_NAME
--resource-group $DEV_RESOURCE_GROUP
--location $RANDOM_REGION

Without this step, subsequent commands that configure the development workspace and create development data assets reference resources that have not yet been created.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions