11 lines
231 B
HCL
11 lines
231 B
HCL
variable "name" {
|
|
description = "Name of our Application"
|
|
type = string
|
|
default = "lab-1-app"
|
|
}
|
|
|
|
variable "environment" {
|
|
description = "The deployment environment"
|
|
type = string
|
|
default = "dev"
|
|
}
|