Add missing root device for VPN server

This commit is contained in:
Khue Doan 2021-05-17 02:19:37 +07:00
parent 30ab309a22
commit c6736e8bde

View File

@ -39,6 +39,17 @@ resource "lxd_container" "vpn" {
parent = "eno1" # TODO (optimize) Make parent interface a variable parent = "eno1" # TODO (optimize) Make parent interface a variable
} }
} }
device {
type = "disk"
name = "root"
properties = {
pool = "default"
path = "/"
size = "8GiB"
}
}
} }
module "ansible_provisioner" { module "ansible_provisioner" {