terraform-tofu-labs/1-getting-started/code/variables.tf
2024-04-16 15:23:10 +01:00

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"
}