khuedoan-homelab/infra/lxd/cluster.tf
2021-02-12 21:51:19 +07:00

14 lines
184 B
HCL

resource "lxd_container" "test1" {
name = "test1"
image = "ubuntu:20.04"
ephemeral = false
config = {
"boot.autostart" = true
}
limits = {
cpu = 2
}
}