18 lines
273 B
HCL
18 lines
273 B
HCL
locals {
|
|
default_remote = "lappy"
|
|
instances = {
|
|
"tofu-example" = {
|
|
|
|
},
|
|
}
|
|
}
|
|
|
|
resource "incus_instance" "demo" {
|
|
name = "demo"
|
|
image = "images:fedora/42"
|
|
config = {
|
|
"boot.autostart" = true
|
|
"limits.cpu" = 2
|
|
"limits.memory" = "4GiB"
|
|
}
|
|
}
|