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