hcloud-server-tf/variables.tf
Robert Kaussow 87ebb35016
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
initial commit
2022-09-01 21:43:01 +02:00

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)
}