Purpose

This configuration file sets up the machine learning workspace in Azure. The workspace is the central hub for your machine learning project, where all computations, data, models, and other resources are managed.

Dependencies

  • ml_resource_group: A designated resource group to contain all resources related to machine learning.
  • keyvault: Used for securely storing secrets and other sensitive information.
  • acr: An Azure Container Registry for storing and managing Docker container images.
  • adls: Azure Data Lake Storage for storing large amounts of data that can be used by machine learning models.

Inputs

  • resource_group_name: The output name of the resource group.
  • name: The name of the machine learning workspace, typically based on a naming convention.
  • keyvault_id: The ID of the Key Vault, used for secure storage.
  • storage_account_id: The ID of the ADLS storage account.
  • container_registry_id: The ID of the container registry.

Usage

To apply this configuration, run the following commands: ```sh terragrunt init terragrunt apply