- environments/production/main.tf: S3 backend (MinIO), Proxmox provider (commented, ready for bare-metal) - environments/production/variables.tf: Variable stubs for Proxmox - atlantis.yaml: Repo-level config (autoplan on .tf changes, require approval) - .gitignore: Terraform/OpenTofu patterns - modules/: Empty, ready for reusable modules Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
365 B
HCL
14 lines
365 B
HCL
# Variables for production environment
|
|
# Secrets are injected via SOPS or environment variables in Atlantis
|
|
|
|
# variable "proxmox_endpoint" {
|
|
# description = "Proxmox API endpoint URL"
|
|
# type = string
|
|
# }
|
|
|
|
# variable "proxmox_api_token" {
|
|
# description = "Proxmox API token (user@realm!token=secret)"
|
|
# type = string
|
|
# sensitive = true
|
|
# }
|