mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-10 07:16:57 +07:00
14 lines
184 B
HCL
14 lines
184 B
HCL
resource "lxd_container" "test1" {
|
|
name = "test1"
|
|
image = "ubuntu:20.04"
|
|
ephemeral = false
|
|
|
|
config = {
|
|
"boot.autostart" = true
|
|
}
|
|
|
|
limits = {
|
|
cpu = 2
|
|
}
|
|
}
|