{"id":35528170,"url":"https://github.com/homestak-dev/iac-driver","last_synced_at":"2026-01-31T18:22:24.584Z","repository":{"id":331565721,"uuid":"1127081162","full_name":"homestak-dev/iac-driver","owner":"homestak-dev","description":"Integration test orchestration for Proxmox VE infrastructure-as-code","archived":false,"fork":false,"pushed_at":"2026-01-16T19:31:28.000Z","size":337,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-17T05:31:01.391Z","etag":null,"topics":["homelab","infrastructure-as-code","integration-testing","proxmox"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/homestak-dev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-03T06:11:53.000Z","updated_at":"2026-01-16T19:30:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/homestak-dev/iac-driver","commit_stats":null,"previous_names":["homestak-dev/iac-driver"],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/homestak-dev/iac-driver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fiac-driver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fiac-driver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fiac-driver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fiac-driver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/homestak-dev","download_url":"https://codeload.github.com/homestak-dev/iac-driver/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/homestak-dev%2Fiac-driver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28561842,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T03:31:16.861Z","status":"ssl_error","status_checked_at":"2026-01-19T03:31:15.069Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["homelab","infrastructure-as-code","integration-testing","proxmox"],"created_at":"2026-01-04T01:15:50.031Z","updated_at":"2026-01-19T05:00:44.185Z","avatar_url":"https://github.com/homestak-dev.png","language":"Python","readme":"# iac-driver\n\nInfrastructure orchestration engine for Proxmox VE.\n\n## Overview\n\nThis repo provides scenario-based workflows that coordinate the [homestak-dev](https://github.com/homestak-dev) tool repositories:\n\n| Repo | Purpose |\n|------|---------|\n| [bootstrap](https://github.com/homestak-dev/bootstrap) | Entry point - curl\\|bash setup |\n| [site-config](https://github.com/homestak-dev/site-config) | Site-specific secrets and configuration |\n| [ansible](https://github.com/homestak-dev/ansible) | Proxmox host configuration, PVE installation |\n| [tofu](https://github.com/homestak-dev/tofu) | VM provisioning with OpenTofu |\n| [packer](https://github.com/homestak-dev/packer) | Custom Debian cloud images |\n\n## Quick Start\n\n```bash\n# Clone iac-driver and site-config\ngit clone https://github.com/homestak-dev/iac-driver.git\ngit clone https://github.com/homestak-dev/site-config.git\n\n# Setup secrets\ncd site-config\nmake setup \u0026\u0026 make decrypt\n\n# Clone sibling tool repos\ncd ../iac-driver\n./scripts/setup-tools.sh\n\n# List available scenarios\n./run.sh --list-scenarios\n\n# Run a scenario\n./run.sh --scenario pve-configure --local\n```\n\n## CLI Usage\n\n```bash\n./run.sh --scenario \u003cname\u003e [--host \u003chost\u003e] [options]\n\nOptions:\n  --scenario, -S    Scenario to run (required)\n  --host, -H        Target PVE host (default: pve)\n  --skip, -s        Skip phase(s) (can be repeated)\n  --list-scenarios  List available scenarios\n  --list-phases     List phases for selected scenario\n  --verbose, -v     Enable debug logging\n  --local           Run locally (for pve-configure)\n  --remote \u003cIP\u003e     Remote host IP (for pve-configure)\n  --vm-ip \u003cIP\u003e      Target VM IP (for bootstrap-install)\n```\n\n**Available scenarios:**\n- `pve-configure` - Configure PVE host (pve-setup + user)\n- `bootstrap-install` - Test bootstrap on a VM\n- `simple-vm-constructor` - Deploy and verify SSH (~30s)\n- `simple-vm-destructor` - Destroy test VM (~3s)\n- `simple-vm-roundtrip` - Deploy, verify SSH, destroy (~33s)\n- `nested-pve-constructor` - Provision inner PVE for integration testing (~10 min)\n- `nested-pve-destructor` - Cleanup inner PVE (~30s)\n- `nested-pve-roundtrip` - Full nested PVE integration test (~12 min)\n\n## Secrets Management\n\nCredentials are managed in the [site-config](https://github.com/homestak-dev/site-config) repository using SOPS + age.\n\n```bash\ncd ../site-config\nmake setup    # Configure git hooks, check dependencies\nmake decrypt  # Decrypt secrets (requires age key)\n```\n\nSee [site-config README](https://github.com/homestak-dev/site-config#readme) for setup instructions.\n\n## Prerequisites\n\n- [site-config](https://github.com/homestak-dev/site-config) set up and decrypted\n- Ansible 2.0+, OpenTofu, Packer\n- SSH key at `~/.ssh/id_rsa`\n- Proxmox VE host with API access\n\n## Documentation\n\nSee [CLAUDE.md](CLAUDE.md) for detailed architecture and scenario documentation.\n\n## License\n\nApache 2.0 - see [LICENSE](LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomestak-dev%2Fiac-driver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhomestak-dev%2Fiac-driver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomestak-dev%2Fiac-driver/lists"}