101-machine-learning patch (#172)

* fix 101-machine-learning example

* fix example
This commit is contained in:
Dingjia Chen
2023-03-01 23:37:30 -06:00
committed by GitHub
parent 7c06cacc7e
commit 452dac32c9
6 changed files with 81 additions and 35 deletions

View File

@ -1,8 +1,3 @@
variable "name" {
type = string
description = "Name of the deployment"
}
variable "environment" {
type = string
description = "Name of the environment"
@ -12,5 +7,11 @@ variable "environment" {
variable "location" {
type = string
description = "Location of the resources"
default = "East US"
default = "eastus"
}
variable "prefix" {
type = string
description = "Prefix of the resource name"
default = "ml"
}