Skip to content

Commit 5c674c6

Browse files
committed
Include variable defaults in read me
1 parent 9fcd0f3 commit 5c674c6

File tree

4 files changed

+32
-30
lines changed

4 files changed

+32
-30
lines changed

quickstart/101-machine-learning/readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ Network connectivity to the workspace is allowed over public endpoints, making t
2222

2323
## Variables
2424

25-
| Name | Description |
26-
|-|-|
27-
| name | Name of the deployment |
28-
| environment | The deployment environment name (used for pre- and postfixing resource names) |
29-
| location | The Azure region used for deployments |
25+
| Name | Description | Default |
26+
|-|-|-|
27+
| name | Name of the deployment | - |
28+
| environment | The deployment environment name (used for pre- and postfixing resource names) | dev |
29+
| location | The Azure region used for deployments | East US |
3030

3131
## Usage
3232

quickstart/201-machine-learning-moderately-secure/readme.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,17 @@ This configuration describes the minimal set of resources you require to get sta
2929

3030
## Variables
3131

32-
| Name | Description |
33-
|-|-|
34-
| name | Name of the deployment |
35-
| environment | The deployment environment name (used for pre- and postfixing resource names) |
36-
| location | The Azure region used for deployments |
37-
| vnet_address_space | Address space of the virtual network |
38-
| training_subnet_address_space | Address space of the training subnet |
39-
| aks_subnet_address_space | Address space of the aks subnet |
40-
| ml_subnet_address_space | Address space of the ML workspace subnet |
41-
| image_build_compute_name | Name of the compute cluster to be created and configured for building docker images (Azure ML Environments) |
32+
| Name | Description | Default |
33+
|-|-|-|
34+
| name | Name of the deployment | - |
35+
| environment | The deployment environment name (used for pre- and postfixing resource names) | dev |
36+
| location | The Azure region used for deployments | East US |
37+
| vnet_address_space | Address space of the virtual network | ["10.0.0.0/16"] |
38+
| training_subnet_address_space | Address space of the training subnet | ["10.0.1.0/24"] |
39+
| aks_subnet_address_space | Address space of the aks subnet | ["10.0.2.0/23"] |
40+
| ml_subnet_address_space | Address space of the ML workspace subnet | ["10.0.0.0/24"] |
41+
| image_build_compute_name | Name of the compute cluster to be created and configured for building docker images (Azure ML Environments) | image-builder |
42+
4243

4344
## Usage
4445

quickstart/202-machine-learning-moderately-secure-existing-VNet/readme.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ Please note that this template does not create Azure Private DNS zones. The assu
3030

3131
## Variables
3232

33-
| Name | Description |
34-
|-|-|
35-
| name | Name of the deployment |
36-
| environment | The deployment environment name (used for pre- and postfixing resource names) |
37-
| location | The Azure region used for deployments |
38-
| image_build_compute_name | Name of the compute cluster to be created and configured for building docker images (Azure ML Environments) |
39-
| training_subnet_resource_id | Resource ID of the existing training subnet |
40-
| aks_subnet_resource_id | Resource ID of the existing aks subnet |
41-
| ml_subnet_resource_id | Resource ID of the existing ML workspace subnet |
42-
| privatelink_api_azureml_ms_resource_id | Resource ID of the existing privatelink.api.azureml.ms private dns zone |
43-
| privatelink_azurecr_io_resource_id | Resource ID of the existing privatelink.azurecr.io private dns zone |
44-
| privatelink_notebooks_azure_net_resource_id | Resource ID of the existing privatelink.notebooks.azure.net private dns zone |
45-
| privatelink_blob_core_windows_net_resource_id | Resource ID of the existing privatelink.blob.core.windows.net private dns zone |
46-
| privatelink_file_core_windows_net_resource_id | Resource ID of the existing privatelink.file.core.windows.net private dns zone |
47-
| privatelink_vaultcore_azure_net_resource_id | Resource ID of the existing privatelink.vaultcore.azure.net private dns zone |
33+
| Name | Description | Default |
34+
|-|-|-|
35+
| name | Name of the deployment | - |
36+
| environment | The deployment environment name (used for pre- and postfixing resource names) | dev |
37+
| location | The Azure region used for deployments | East US |
38+
| training_subnet_resource_id | Resource ID of the existing training subnet | - |
39+
| aks_subnet_resource_id | Resource ID of the existing aks subnet | - |
40+
| ml_subnet_resource_id | Resource ID of the existing ML workspace subnet | - |
41+
| image_build_compute_name | Name of the compute cluster to be created and configured for building docker images (Azure ML Environments) | image-builder |
42+
| privatelink_api_azureml_ms_resource_id | Resource ID of the existing privatelink.api.azureml.ms private dns zone | - |
43+
| privatelink_azurecr_io_resource_id | Resource ID of the existing privatelink.azurecr.io private dns zone | - |
44+
| privatelink_notebooks_azure_net_resource_id | Resource ID of the existing privatelink.notebooks.azure.net private dns zone | - |
45+
| privatelink_blob_core_windows_net_resource_id | Resource ID of the existing privatelink.blob.core.windows.net private dns zone | - |
46+
| privatelink_file_core_windows_net_resource_id | Resource ID of the existing privatelink.file.core.windows.net private dns zone | - |
47+
| privatelink_vaultcore_azure_net_resource_id | Resource ID of the existing privatelink.vaultcore.azure.net private dns zone | - |
4848

4949
## Usage
5050

quickstart/202-machine-learning-moderately-secure-existing-VNet/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ variable "environment" {
1212
variable "location" {
1313
type = string
1414
description = "Location of the resources"
15+
default = "East US"
1516
}
1617

1718
variable "image_build_compute_name" {

0 commit comments

Comments
 (0)