2022-09-03 21:12:06 +00:00
|
|
|
// Hetzner Cloud
|
2022-09-01 19:43:01 +00:00
|
|
|
variable "hcloud_token" {
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "hcloud_project" {
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2022-09-03 21:12:06 +00:00
|
|
|
// Cloudflare
|
2022-09-01 19:43:01 +00:00
|
|
|
variable "cloudflare_api_token" {
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "cloudflare_zones" {
|
|
|
|
type = list(string)
|
|
|
|
}
|
|
|
|
|
2022-09-03 21:12:06 +00:00
|
|
|
// Univention
|
|
|
|
variable "ucs_api_url" {
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "ucs_api_username" {
|
|
|
|
type = string
|
2022-09-01 19:43:01 +00:00
|
|
|
}
|
|
|
|
|
2022-09-03 21:12:06 +00:00
|
|
|
variable "ucs_api_password" {
|
2022-09-01 19:43:01 +00:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2022-09-03 21:12:06 +00:00
|
|
|
variable "ucs_zones" {
|
|
|
|
type = list(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Module
|
|
|
|
variable "server" {
|
|
|
|
default = []
|
|
|
|
}
|
|
|
|
|
2022-09-01 19:43:01 +00:00
|
|
|
variable "server_keys" {
|
|
|
|
type = list(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "ssh_keys" {
|
|
|
|
type = list(string)
|
|
|
|
}
|
2022-09-03 21:12:06 +00:00
|
|
|
|
|
|
|
variable "server_dns_zone" {
|
|
|
|
type = string
|
|
|
|
}
|