terraform-tofu-labs/1-getting-started/code/variables.tf

12 lines
231 B
Terraform
Raw Normal View History

2024-04-16 14:23:10 +00:00
variable "name" {
description = "Name of our Application"
type = string
default = "lab-1-app"
}
variable "environment" {
description = "The deployment environment"
type = string
default = "dev"
}