Archived
Consolidates nixos, docker, raspi, and debian-configuration into a single infrastructure-as-code repo. Includes: - ansible/: full inventory + proxmox-hardening, freeipa, and raspberrypi roles (converted from debian-configuration bash scripts) - terraform/: Proxmox VMs, Dynu DNS, Pi-hole (decommissioned stub), Docker container catalog — migrated from docker/infrastructure/terraform/ - stacks/docker/, stacks/raspi/, nixos/: placeholder READMEs pending git subtree population (see implementation plan) - docs/: internal MkDocs site with architecture, network topology, runbooks, and drift-detection guide; external sanitized site - scripts/: drift-detect.sh, docs-build.sh, install-hooks.sh, check-secrets.sh - CI: secret-scan (push/PR), drift-detect (daily), docs-build (on change) - Pi-hole removed throughout — DNS is FreeIPA, DHCP is router See docs/internal/implementation-plan.md for the phased rollout after pushing to Gitea. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01UvNjoxTWEDkhXsd1Dq2ETP
34 lines
914 B
Terraform
34 lines
914 B
Terraform
|
|
variable "dynu_root_domain" {
|
|
description = "Dynu root domain name to reconcile/import (for example: lan.ddnsgeek.com)."
|
|
type = string
|
|
default = "lan.ddnsgeek.com"
|
|
}
|
|
|
|
variable "dynu_api_key" {
|
|
description = "Dynu API key/token used by the Dynu Terraform provider."
|
|
type = string
|
|
sensitive = true
|
|
default = null
|
|
}
|
|
|
|
variable "dynu_username" {
|
|
description = "Optional Dynu username, only if required by the provider."
|
|
type = string
|
|
sensitive = true
|
|
default = null
|
|
}
|
|
|
|
variable "dynu_password" {
|
|
description = "Optional Dynu password, only if required by the provider."
|
|
type = string
|
|
sensitive = true
|
|
default = null
|
|
}
|
|
|
|
variable "dynu_record_import_id" {
|
|
description = "Placeholder import ID for a single dynu_dns_record during one-at-a-time reconciliation."
|
|
type = string
|
|
default = "REPLACE_WITH_DYNU_RECORD_IMPORT_ID"
|
|
}
|