adding Azure Bastion and DSVM
This commit is contained in:
@ -38,9 +38,38 @@ variable "ml_subnet_address_space" {
|
||||
description = "Address space of the ML workspace subnet"
|
||||
default = ["10.0.0.0/24"]
|
||||
}
|
||||
variable "dsvm_subnet_address_space" {
|
||||
type = list(string)
|
||||
description = "Address space of the DSVM subnet"
|
||||
default = ["10.0.4.0/24"]
|
||||
}
|
||||
|
||||
variable "bastion_subnet_address_space" {
|
||||
type = list(string)
|
||||
description = "Address space of the bastion subnet"
|
||||
default = ["10.0.5.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"
|
||||
}
|
||||
|
||||
# DSVM Variables
|
||||
variable "dsvm_name" {
|
||||
type = string
|
||||
description = "Name of the Data Science VM"
|
||||
default = "vmdsvm01"
|
||||
}
|
||||
variable "dsvm_admin_username" {
|
||||
type = string
|
||||
description = "Admin username of the Data Science VM"
|
||||
default = "azureadmin"
|
||||
}
|
||||
|
||||
variable "dsvm_host_password" {
|
||||
type = string
|
||||
description = "Password for the admin username of the Data Science VM"
|
||||
sensitive = true
|
||||
}
|
Reference in New Issue
Block a user