diff --git a/incus/main.tf b/incus/main.tf index f32b150..772e62a 100644 --- a/incus/main.tf +++ b/incus/main.tf @@ -52,27 +52,13 @@ resource "incus_instance" "observer-tofu" { resource "incus_instance" "forgejo-runner-tofu" { - name = "forgejo-runner-tofu" + name = "observer-tofu" image = "images:nixos/25.05/amd64" profiles = [ incus_profile.d.name ] config = { - "limits.cpu" = 6 + "limits.cpu" = 4 "limits.memory" = "8GiB" } } - - - -resource "incus_instance" "base-tofu" { - name = "base-tofu" - image = "images:nixos/25.05/amd64" - profiles = [ - incus_profile.d.name - ] - config = { - "limits.cpu" = 1 - "limits.memory" = "1GiB" - } -}