hcloud-server-tf/variables.tf

32 lines
390 B
HCL

variable "hcloud_token" {
type = string
}
variable "hcloud_project" {
type = string
}
variable "cloudflare_api_token" {
type = string
}
variable "cloudflare_zones" {
type = list(string)
}
variable "server" {
default = []
}
variable "cloudflare_default_zone" {
type = string
}
variable "server_keys" {
type = list(string)
}
variable "ssh_keys" {
type = list(string)
}