Files
vm-skills/hetzner-bootstrap/config.json
Vault Sovereign eac77ef7b4 Initial commit: VaultMesh Skills collection
Collection of operational skills for VaultMesh infrastructure including:
- backup-sovereign: Backup and recovery operations
- btc-anchor: Bitcoin anchoring
- cloudflare-tunnel-manager: Cloudflare tunnel management
- container-registry: Container registry operations
- disaster-recovery: Disaster recovery procedures
- dns-sovereign: DNS management
- eth-anchor: Ethereum anchoring
- gitea-bootstrap: Gitea setup and configuration
- hetzner-bootstrap: Hetzner server provisioning
- merkle-forest: Merkle tree operations
- node-hardening: Node security hardening
- operator-bootstrap: Operator initialization
- proof-verifier: Cryptographic proof verification
- rfc3161-anchor: RFC3161 timestamping
- secrets-vault: Secrets management

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-27 00:25:00 +00:00

55 lines
1.1 KiB
JSON

{
"name": "hetzner-bootstrap",
"version": "1.1.0",
"defaults": {
"SOVEREIGN_USER": "sovereign",
"WG_PORT": "51820",
"WG_CIDR": "10.200.0.1/24",
"INSTALL_CLOUDFLARED": "true",
"INSTALL_WIREGUARD": "true",
"DRY_RUN": "1",
"REQUIRE_CONFIRM": "1",
"CONFIRM_PHRASE": "I UNDERSTAND THIS CAN AFFECT REMOTE ACCESS",
"SSH_PORT": "22",
"ALLOW_SSH_FALLBACK_22": "true"
},
"phases": {
"preflight": [
"00_preflight.sh"
],
"bootstrap": {
"plan": [
"10_plan.sh"
],
"apply": [
"11_apply.sh"
],
"rollback": [
"rollback/emergency_restore_ssh_ufw.sh"
]
},
"wireguard": {
"plan": [
"20_wireguard_plan.sh"
],
"apply": [
"21_wireguard_apply.sh"
],
"rollback": [
"rollback/undo_wireguard.sh"
]
},
"verify": [
"90_verify.sh"
],
"report": [
"99_report.sh"
]
},
"eu_compliance": {
"data_residency": "EU",
"jurisdiction": "Germany/Finland (Hetzner DC)",
"gdpr_applicable": true
}
}