11 safe auto-fixes (docs/comments only): reverse_proxy meta stale DNS-01 description, base/playbooks/scripts/terraform/public_dns README build-state, CAPABILITIES reverse-proxy Traefik→Caddy, README ADR list → 024, TF cax11→cx23 stamps, public_dns wildcard DNS-01→HTTP-01 comment. 29 open findings reported. make lint green. No stale-deferred (ADR-011 open questions still open). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
41 lines
964 B
HCL
41 lines
964 B
HCL
variable "name" {
|
|
description = "Server name (and hostname)"
|
|
type = string
|
|
}
|
|
|
|
variable "server_type" {
|
|
description = "Hetzner server type, e.g. cx23 (x86) or cax11 (ARM)"
|
|
type = string
|
|
}
|
|
|
|
variable "location" {
|
|
description = "Hetzner location, e.g. hel1"
|
|
type = string
|
|
}
|
|
|
|
variable "image" {
|
|
description = "OS image slug, e.g. debian-13"
|
|
type = string
|
|
}
|
|
|
|
variable "ansible_ssh_pubkey" {
|
|
description = "Public SSH key provisioned for the ansible user via cloud-init"
|
|
type = string
|
|
}
|
|
|
|
variable "ssh_admin_cidrs" {
|
|
description = "Source CIDRs allowed to reach SSH (e.g. ubongo's address/32)"
|
|
type = list(string)
|
|
}
|
|
|
|
variable "public_web" {
|
|
description = "Open the public web/NetBird ports (80/443 TCP, 3478 UDP) to the internet"
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "labels" {
|
|
description = "Hetzner resource labels (metadata only)"
|
|
type = map(string)
|
|
default = {}
|
|
}
|