mirror of
https://github.com/khuedoan/homelab.git
synced 2025-02-07 09:41:08 +07:00
Add missing root device for VPN server
This commit is contained in:
parent
30ab309a22
commit
c6736e8bde
@ -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" {
|
||||||
|
Loading…
Reference in New Issue
Block a user