Add test container

This commit is contained in:
Khue Doan 2020-07-20 13:55:27 +07:00
parent 1a16900cbc
commit 47ed8f481d

View File

@ -1,2 +1,17 @@
provider "lxd" {
}
resource "lxd_container" "test1" {
name = "test1"
remote = "images"
image = "ubuntu/18.04"
ephemeral = false
config = {
"boot.autostart" = true
}
limits = {
cpu = 2
}
}