45 lines
638 B
HCL
45 lines
638 B
HCL
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "ssh_keys" {
|
|
type = list(string)
|
|
}
|
|
|
|
variable "servers" {
|
|
type = list(object({
|
|
ipv4_id = number
|
|
ipv6_id = number
|
|
type = string
|
|
location = string
|
|
}))
|
|
}
|
|
|
|
variable "agents" {
|
|
type = list(object({
|
|
count = optional(number, 1)
|
|
type = string
|
|
location = string
|
|
}))
|
|
}
|
|
|
|
variable "ping_enabled" {
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "public_tcp_services" {
|
|
type = map(list(string))
|
|
default = {}
|
|
}
|
|
|
|
variable "kubernetes_exposed_ips" {
|
|
type = list(string)
|
|
default = []
|
|
}
|
|
|
|
variable "ssh_exposed_ips" {
|
|
type = list(string)
|
|
default = []
|
|
}
|