updating 201 AML

This commit is contained in:
ryhud
2021-09-14 17:37:10 -04:00
parent 38e62ab0ce
commit 40caddf47c
5 changed files with 223 additions and 14 deletions

View File

@ -17,12 +17,30 @@ variable "location" {
variable "vnet_address_space" {
type = list(string)
description = "Address space of the subnet"
description = "Address space of the virtual network"
default = ["10.0.0.0/16"]
}
variable "subnet_address_space" {
variable "training_subnet_address_space" {
type = list(string)
description = "Address space of the subnet"
description = "Address space of the training subnet"
default = ["10.0.0.0/24"]
}
variable "aks_subnet_address_space" {
type = list(string)
description = "Address space of the aks subnet"
default = ["10.0.1.0/24"]
}
variable "ml_subnet_address_space" {
type = list(string)
description = "Address space of the ML workspace subnet"
default = ["10.0.2.0/24"]
}
variable "image_build_compute_name" {
type = string
description = "Name of the compute cluster to be created and set to build docker images"
default = "image-builder"
}