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
21 lines
654 B
YAML
21 lines
654 B
YAML
---
|
|
# Variables applied to every host.
|
|
# Override per-group in group_vars/<group>.yml or per-host in host_vars/<host>/vars.yml.
|
|
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
|
|
# LAN domain
|
|
lan_domain: sweet.home
|
|
tailnet_domain: tail13f623.ts.net
|
|
|
|
# DNS: FreeIPA is the authoritative resolver for sweet.home (Pi-hole decommissioned).
|
|
# All LAN clients point directly to domain-controller.sweet.home for DNS.
|
|
ipa_realm: SWEET.HOME
|
|
ipa_server: domain-controller.sweet.home
|
|
|
|
# Docker access GID — must match FreeIPA docker-access group GID
|
|
docker_access_gid: 50010
|
|
|
|
# IPA admins group granted passwordless sudo on all enrolled hosts
|
|
ipa_admin_group: admins
|