infra/variables.tf
2026-01-09 00:22:05 +02:00

45 lines
626 B
HCL

variable "hcloud_token" {
type = string
sensitive = true
}
variable "cloudflare_api_token" {
type = string
sensitive = true
}
variable "cloudflare_zone_id" {
type = string
}
variable "cloudflare_account_id" {
type = string
}
variable "ssh_public_key" {
type = string
}
variable "location" {
type = string
default = "nbg1"
}
variable "prod_server_type" {
type = string
default = "cpx21"
}
variable "ops_server_type" {
type = string
default = "cpx21"
}
variable "allowed_ssh_ips" {
type = list(string)
}
variable "domain" {
type = string
default = "writekit.dev"
}