Files
a13labs.infra/terraform/modules/websites/variables.tf
T

18 lines
377 B
Terraform
Raw Normal View History

variable "persistent_folder" {
description = "The path to the persistent folder"
type = string
}
variable "primary_domain" {
description = "The primary domain for the websites"
type = string
}
variable "websites" {
description = "A list of websites to be deployed"
type = map(object({
domain_name = string
fqdn = list(string)
}))
}