hcloud-server-tf/variables.tf

53 lines
632 B
Terraform
Raw Normal View History

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