Check out the repo here: https://github.com/mcreekmore/unraid-terraform
Thanks to chrisreeves for doing most of the work on this. This repo just expands on his work and attempts to make the process clearer and easier.
sudo ./add_mkisofs.sh
in the proect root/etc/libvirt/libvirtd.conf
on the Unraid hostlisten_addr = "127.0.0.1"
listen_addr = "0.0.0.0"
Clone this repo to your machine
git clone https://github.com/mcreekmore/unraid-terraform.gitcd unraid-terraform
In the provider.tf
file and replace the following fields with yours:
root@unraid
: this should be an accessible ip/dns record that you can ssh into/home/yourhomedir/.ssh/id_ed25519.pub
: change this to point to an ssh key that you have addedIn the terraform.tfvars
file is where you’ll set all of your preferences and paths to things like the image you’d like to use, your username, size of the disk, route to your public key for ssh access, and even the routes to your unraids domains and isos share.
If you don’t know what yours is, you can check by running ip a
in your unraid terminal and look for the interface that provides you with your networks private IP
If your private IP looks like 192.168.1.XX then your subnet would be “192.168.1.0/24”
And that’s it! We can now deploy a VM using Terraform/OpenTofu to your Unraid server! There’s one last file we should look at though. Open the user_data.yaml.tftpl
file. In here is a cloudinit configuration file. This file runs once the vm is initialized and handles some provisioning for us.
If you’d like any programs installed by default you can add them in the packages
section. Cloudinit is fairly powerful and an industry standard so look around their docs to see what all can be done with this.
Once you’ve customized the variables to your liking, we can now run the project. This project should work with both Terraform and OpenTofu, so for the sake of this tutorial i will keep it agnostic and assume you have your preferred tool aliased to t
in your terminal.
If you want to use Terraform just replace t
with terraform
, and for OpenTofu replace t
with tofu
# initialize the project statet init
# This will print a plan for what terraform/tofu plans to dot plan
# Applies your configuration and builds the vm, type "yes" to confirmt apply
# Or if you're tired of typing yest apply -auto-approve
Be patient, it may take a few minutes to initialize. Once the command has finished you should see a new VM in your unraid dashboard! You should be able to ssh into your vm passwordless with your ssh key, and then run neofetch
and revel in the fruits of your labor.
You can undo your changes with:
t destroy
If you’re new to the concept of Infrastrucrure as Code (IaC) and declarative infrastructure, the main thing to know is that all lifecycle management (i.e. changing, modifying, deleting) should be handled by terraform/tofu.
These tools keep track of everything they’ve done in a state file. If you’re using this project we just simply are using a local state file terraform.tfstate
. If the real state and this file get out of sync, terraform won’t know what to do.
And please do NOT commit this file to version control.
Thank you for taking a look at this project! If you’re interested in tracking your terraform/tofu state files cheaply in an S3 bucket with Backblaze, keep an eye out! I’m working on a follow up that will teach you just that.
And I’m also planning on expanding this project to also include steps on how to provision a kubernetes high-availability cluster using terraform and helm for your unraid server :)