hcloud-server-tf/variables.tf

32 lines
390 B
Terraform
Raw Normal View History

2022-09-01 21:43:01 +02:00
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)
}