variables.tf - infra - Terraform IoC for my remote (Hetzner) and local (Incus) servers.
 (HTM) git clone git://jay.scot/infra
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       variables.tf (360B)
       ---
            1 variable "nodes" {
            2   description = "Configuration settings for each required node."
            3   type = map(object({
            4     image              = string
            5     cloudinit_userdata = string
            6     net_addr           = string
            7     net_gw             = string
            8     devices = optional(map(object({
            9       type       = string
           10       properties = map(any)
           11     })), {})
           12   }))
           13   default = {}
           14 }