hcloud-server-tf/variables.tf
Robert Kaussow 22510d37e3
All checks were successful
continuous-integration/drone/push Build is passing
feat: use default server vars
2022-09-08 13:43:44 +02:00

67 lines
840 B
HCL

// Hetzner Cloud
variable "hcloud_token" {
type = string
}
variable "hcloud_project" {
type = string
}
// Cloudflare
variable "cloudflare_api_token" {
type = string
}
variable "cloudflare_zones" {
type = list(string)
}
// Univention
variable "ucs_api_url" {
type = string
}
variable "ucs_api_username" {
type = string
}
variable "ucs_api_password" {
type = string
}
variable "ucs_zones" {
type = list(string)
}
// Module
variable "server" {
default = []
}
variable "server_keys" {
type = list(string)
}
variable "ssh_keys" {
type = list(string)
}
variable "server_dns_zone" {
type = string
}
variable "server_type" {
type = string
default = "cx11"
}
variable "server_image" {
type = string
default = "rocky-9"
}
variable "server_datacenter" {
type = string
default = "fsn1-dc14"
}