init commit

This commit is contained in:
Jermeiah S 2025-06-12 21:34:48 -04:00
parent cd78d5b172
commit 1a9746a773
No known key found for this signature in database
7 changed files with 158 additions and 2 deletions

18
main.tf Normal file
View file

@ -0,0 +1,18 @@
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"
}
}