Files
a13labs.infra/terraform/modules/apps/template/variables.tf
T
2025-06-05 23:27:50 +02:00

16 lines
337 B
Terraform

variable "persistent_folder" {
description = "The path to the persistent folder"
type = string
}
variable "fqdn" {
description = "The fully qualified domain name for the app server"
type = string
}
variable "tag" {
description = "The version of app to install"
type = string
default = "latest"
}