iac/modules/castopod/variables.tf

20 lines
293 B
Terraform
Raw Normal View History

2025-01-10 15:10:39 +00:00
variable "ssh_authorized_keys" {
type = list(string)
nullable = false
}
variable "base_url" {
type = string
nullable = false
}
variable "castopod_domain" {
type = string
nullable = false
}
variable "castopod_upstream_port" {
type = number
nullable = false
}