17 lines
345 B
HCL
17 lines
345 B
HCL
variable "name" {
|
|
type = string
|
|
description = "Name of the deployment"
|
|
default = "azureml999"
|
|
}
|
|
|
|
variable "environment" {
|
|
type = string
|
|
description = "Name of the environment"
|
|
default = "dev"
|
|
}
|
|
|
|
variable "location" {
|
|
type = string
|
|
description = "Location of the resources"
|
|
default = "East US"
|
|
} |