# Set Up Homelab## Create the VMs with OpenTofu```shpushdopentofu/
./init-validate-plan.sh
tofuapply"plan.out"popd```## Configure them with Ansible```shexportANSIBLE_CONFIG="./ansible/ansible.cfg"
ansible-playbook./ansible/playbooks/bootstrap.yml
```## Destroy```shpushdopentofu/
tofudestroy
popd```