hcloud-server-tf/variables.tf
Robert Kaussow 96ca43bf01
All checks were successful
continuous-integration/drone/push Build is passing
chore: rename ssh_keys to hcloud_ssh_keys
2022-10-09 17:08:37 +02:00

52 lines
616 B
HCL

// Hetzner Cloud
variable "hcloud_token" {
type = string
}
variable "hcloud_project" {
type = string
}
variable "hcloud_ssh_keys" {
type = list(string)
}
// Cloudflare
variable "cloudflare_api_token" {
type = string
}
variable "cloudflare_zones" {
type = any
}
// Univention
variable "ucs_api_url" {
type = string
}
variable "ucs_api_username" {
type = string
}
variable "ucs_api_password" {
type = string
}
variable "ucs_zones" {
type = any
}
// Module
variable "server" {
default = []
}
variable "server_keys" {
type = list(string)
}
variable "server_dns_zone" {
type = string
}