hcloud-server-tf/variables.tf
Robert Kaussow c125c04d9e
All checks were successful
continuous-integration/drone/pr Build is passing
fix: use type any for server variable
2022-12-18 16:32:39 +01:00

53 lines
632 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" {
type = any
default = []
}
variable "server_keys" {
type = list(string)
}
variable "server_dns_zone" {
type = string
}