12 lines
304 B
Terraform
12 lines
304 B
Terraform
|
variable "base_hostname" {
|
||
|
type = string
|
||
|
description = "Base hostname to serve content from"
|
||
|
default = "dev.homelab"
|
||
|
}
|
||
|
|
||
|
variable "use_wesher" {
|
||
|
type = bool
|
||
|
description = "Indicates whether or not services should expose themselves on the wesher network"
|
||
|
default = true
|
||
|
}
|