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

17
incus/variables.tf Normal file
View File

@@ -0,0 +1,17 @@
variable "incus_hypervisors" {
type = map(string)
}
variable "incus_witnesses" {
type = map(string)
}
variable "incus_token" {
type = string
sensitive = true
description = "The common authentication token for all Incus remotes"
}
variable "incus_networks" {
type = map(number)
}