Clarify examples and read me

This commit is contained in:
Dennis Eikelenboom
2021-08-18 10:36:04 -07:00
parent 3cb80cebe4
commit 79449910c3
7 changed files with 47 additions and 27 deletions

View File

@@ -1,7 +1,7 @@
variable "name" {
type = string
description = "Name of the deployment"
default = "mlple999"
default = "azureml568"
}
variable "environment" {
@@ -14,4 +14,16 @@ variable "location" {
type = string
description = "Location of the resources"
default = "East US"
}
variable "vnet_address_space" {
type = list(string)
description = "Address space of the subnet"
default = ["10.0.0.0/16"]
}
variable "subnet_address_space" {
type = list(string)
description = "Address space of the subnet"
default = ["10.0.0.0/24"]
}