initial commit

This commit is contained in:
2026-03-14 20:56:04 +01:00
commit 9b1aa393b3
38 changed files with 1517 additions and 0 deletions

22
incus/provider.tf Normal file
View File

@@ -0,0 +1,22 @@
terraform {
required_providers {
incus = {
source = "lxc/incus"
}
}
}
provider "incus" {
generate_client_certificates = true
accept_remote_certificate = true
default_remote = keys(var.incus_hypervisors)[0]
dynamic "remote" {
for_each = var.incus_hypervisors
content {
name = remote.key
address = remote.value
token = var.incus_token
}
}
}