This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Tofu-Configurations/main.tf
2025-06-12 21:50:35 -04:00

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"
}
}