I'm just getting started using Terraform to create LXC on my Proxmox nodes, so this is probably down to permissions.
When I use the following Terraform plan to create an LXC, I get an error saying only root can create arbitrary filesystems, however, the provider docs state that a rootfs must be supplied to avoid Terraform crashing. The plan is:
Read more
When I use the following Terraform plan to create an LXC, I get an error saying only root can create arbitrary filesystems, however, the provider docs state that a rootfs must be supplied to avoid Terraform crashing. The plan is:
Code:
terraform {
required_providers {
proxmox = {
source = "telmate/proxmox"
version = "2.7.4"
}
}
}...
Read more