boma/terraform/environments/production/terraform.tfvars.example
sjat 905bc92b15 Use local Terraform state; drop unworkable Forgejo HTTP backend (R10b)
Forgejo's /raw/ API is read-only so it cannot serve as a Terraform HTTP state
backend. Switch both envs to local state on the control node (ADR-006); remove
the dead TF_HTTP_* credential hints.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-30 21:34:05 +02:00

21 lines
767 B
Text

# Production environment — non-secret values
# Copy to terraform.tfvars and fill in your values.
#
# Secrets must be exported as environment variables before running Terraform:
# export TF_VAR_proxmox_api_token="terraform@pve!tokenid=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
#
# State is local (see backend.tf) — no Forgejo backend credentials needed.
proxmox_endpoint = "https://pve01.baobab.band:8006/"
proxmox_insecure = false
proxmox_node = "pve01"
vm_template_id = 9000 # Proxmox VM ID of the Debian 13 cloud-init template
vm_datastore_id = "local-lvm"
gateway = "10.20.0.1"
dns_servers = ["10.20.0.10", "10.20.0.11"]
dns_domain = "boma.baobab.band"
ssh_public_keys = [
# "ssh-ed25519 AAAA... user@host",
]