Include variable defaults in read me

This commit is contained in:
Dennis Eikelenboom 2021-09-29 09:13:01 -07:00
parent 9fcd0f3fb2
commit 5c674c6100
4 changed files with 32 additions and 30 deletions

View File

@ -22,11 +22,11 @@ Network connectivity to the workspace is allowed over public endpoints, making t
## Variables ## Variables
| Name | Description | | Name | Description | Default |
|-|-| |-|-|-|
| name | Name of the deployment | | name | Name of the deployment | - |
| environment | The deployment environment name (used for pre- and postfixing resource names) | | environment | The deployment environment name (used for pre- and postfixing resource names) | dev |
| location | The Azure region used for deployments | | location | The Azure region used for deployments | East US |
## Usage ## Usage

View File

@ -29,16 +29,17 @@ This configuration describes the minimal set of resources you require to get sta
## Variables ## Variables
| Name | Description | | Name | Description | Default |
|-|-| |-|-|-|
| name | Name of the deployment | | name | Name of the deployment | - |
| environment | The deployment environment name (used for pre- and postfixing resource names) | | environment | The deployment environment name (used for pre- and postfixing resource names) | dev |
| location | The Azure region used for deployments | | location | The Azure region used for deployments | East US |
| vnet_address_space | Address space of the virtual network | | vnet_address_space | Address space of the virtual network | ["10.0.0.0/16"] |
| training_subnet_address_space | Address space of the training subnet | | training_subnet_address_space | Address space of the training subnet | ["10.0.1.0/24"] |
| aks_subnet_address_space | Address space of the aks subnet | | aks_subnet_address_space | Address space of the aks subnet | ["10.0.2.0/23"] |
| ml_subnet_address_space | Address space of the ML workspace subnet | | ml_subnet_address_space | Address space of the ML workspace subnet | ["10.0.0.0/24"] |
| image_build_compute_name | Name of the compute cluster to be created and configured for building docker images (Azure ML Environments) | | image_build_compute_name | Name of the compute cluster to be created and configured for building docker images (Azure ML Environments) | image-builder |
## Usage ## Usage

View File

@ -30,21 +30,21 @@ Please note that this template does not create Azure Private DNS zones. The assu
## Variables ## Variables
| Name | Description | | Name | Description | Default |
|-|-| |-|-|-|
| name | Name of the deployment | | name | Name of the deployment | - |
| environment | The deployment environment name (used for pre- and postfixing resource names) | | environment | The deployment environment name (used for pre- and postfixing resource names) | dev |
| location | The Azure region used for deployments | | location | The Azure region used for deployments | East US |
| image_build_compute_name | Name of the compute cluster to be created and configured for building docker images (Azure ML Environments) | | training_subnet_resource_id | Resource ID of the existing training subnet | - |
| training_subnet_resource_id | Resource ID of the existing training subnet | | aks_subnet_resource_id | Resource ID of the existing aks subnet | - |
| aks_subnet_resource_id | Resource ID of the existing aks subnet | | ml_subnet_resource_id | Resource ID of the existing ML workspace subnet | - |
| ml_subnet_resource_id | Resource ID of the existing ML workspace subnet | | image_build_compute_name | Name of the compute cluster to be created and configured for building docker images (Azure ML Environments) | image-builder |
| privatelink_api_azureml_ms_resource_id | Resource ID of the existing privatelink.api.azureml.ms private dns zone | | privatelink_api_azureml_ms_resource_id | Resource ID of the existing privatelink.api.azureml.ms private dns zone | - |
| privatelink_azurecr_io_resource_id | Resource ID of the existing privatelink.azurecr.io private dns zone | | privatelink_azurecr_io_resource_id | Resource ID of the existing privatelink.azurecr.io private dns zone | - |
| privatelink_notebooks_azure_net_resource_id | Resource ID of the existing privatelink.notebooks.azure.net private dns zone | | privatelink_notebooks_azure_net_resource_id | Resource ID of the existing privatelink.notebooks.azure.net private dns zone | - |
| privatelink_blob_core_windows_net_resource_id | Resource ID of the existing privatelink.blob.core.windows.net private dns zone | | privatelink_blob_core_windows_net_resource_id | Resource ID of the existing privatelink.blob.core.windows.net private dns zone | - |
| privatelink_file_core_windows_net_resource_id | Resource ID of the existing privatelink.file.core.windows.net private dns zone | | privatelink_file_core_windows_net_resource_id | Resource ID of the existing privatelink.file.core.windows.net private dns zone | - |
| privatelink_vaultcore_azure_net_resource_id | Resource ID of the existing privatelink.vaultcore.azure.net private dns zone | | privatelink_vaultcore_azure_net_resource_id | Resource ID of the existing privatelink.vaultcore.azure.net private dns zone | - |
## Usage ## Usage

View File

@ -12,6 +12,7 @@ variable "environment" {
variable "location" { variable "location" {
type = string type = string
description = "Location of the resources" description = "Location of the resources"
default = "East US"
} }
variable "image_build_compute_name" { variable "image_build_compute_name" {