25 lines
640 B
Terraform
25 lines
640 B
Terraform
locals {
|
|
physical_hosts = {
|
|
pve = {
|
|
hostname = "pve"
|
|
type = "physical"
|
|
role = "proxmox"
|
|
management_ip = "pve.sweet.home"
|
|
os_family = "debian"
|
|
hypervisor = "proxmox"
|
|
location = "home"
|
|
notes = "Primary Proxmox VE host"
|
|
}
|
|
raspberrypi = {
|
|
hostname = "raspberrypi"
|
|
type = "physical"
|
|
role = "edge"
|
|
management_ip = "raspberrypi.tail13f623.ts.net"
|
|
os_family = "debian"
|
|
hypervisor = null
|
|
location = "riverglades"
|
|
notes = "Raspberry Pi host"
|
|
}
|
|
}
|
|
}
|