ingress/terraform/node.tf

143 lines
3.4 KiB
Terraform
Raw Normal View History

locals {
nodes_with_names = {
for k, v in var.nodes : k => merge(v, {
2024-08-23 20:03:47 +00:00
id = 700 + index(keys(var.nodes), k)
hostname = "${v.name}.ingress.tjo.cloud"
hash = sha1(v.name)
})
}
nodes = {
for k, v in local.nodes_with_names : k => merge(v, {
mac_address = "AA:BB:07:00:${format("%v:%v", substr(v.hash, 0, 2), substr(v.hash, 2, 2))}"
})
}
ipv4_addresses = {
for key, node in local.nodes : key => {
for k, v in proxmox_virtual_environment_vm.nodes[key].ipv4_addresses :
proxmox_virtual_environment_vm.nodes[key].network_interface_names[k] => v
}
}
ipv6_addresses = {
for key, node in local.nodes : key => {
for k, v in proxmox_virtual_environment_vm.nodes[key].ipv6_addresses :
proxmox_virtual_environment_vm.nodes[key].network_interface_names[k] => v
}
}
nodes_with_address = {
for k, v in local.nodes :
k => merge(v, {
2024-08-24 10:13:05 +00:00
public_ipv4 = local.ipv4_addresses[k]["ens18"][0]
public_ipv6 = local.ipv6_addresses[k]["ens18"][0]
2024-08-23 20:03:47 +00:00
internal_ipv4 = local.ipv4_addresses[k]["tailscale0"][0]
internal_ipv6 = local.ipv6_addresses[k]["tailscale0"][0]
})
}
}
2024-08-23 20:03:47 +00:00
resource "tailscale_tailnet_key" "ingress" {
reusable = true
ephemeral = true
preauthorized = true
tags = ["tag:ingress-tjo-cloud"]
description = "tailscale key for ingress-tjo-cloud nodes"
}
resource "proxmox_virtual_environment_file" "ingress" {
content_type = "iso"
datastore_id = var.common_storage
node_name = values(var.nodes)[0].host
source_file {
path = var.image_path
file_name = "ingress-tjo-cloud.img"
}
}
resource "proxmox_virtual_environment_file" "cloudinit" {
for_each = local.nodes
node_name = each.value.host
content_type = "snippets"
datastore_id = var.common_storage
source_raw {
data = <<-EOF
2024-08-23 20:03:47 +00:00
#cloud-config
2024-08-24 10:13:05 +00:00
runcmd:
- echo "hello world"
2024-08-23 20:03:47 +00:00
- [ 'tailscale', 'up', '--authkey', '${tailscale_tailnet_key.ingress.key}',
'--hostname', '${each.value.name}',
'--accept-routes', 'true',
'--ssh' ]
EOF
2024-08-24 10:13:05 +00:00
file_name = "${each.value.hostname}.cloudconfig.yaml"
}
}
resource "proxmox_virtual_environment_vm" "nodes" {
for_each = local.nodes
vm_id = each.value.id
2024-08-23 20:03:47 +00:00
name = each.value.hostname
node_name = each.value.host
description = "Node ${each.value.name} for ingress.tjo.cloud."
tags = concat(
["tjo-space"],
[each.value.name]
)
stop_on_destroy = true
timeout_start_vm = 60
timeout_stop_vm = 60
timeout_shutdown_vm = 60
timeout_reboot = 60
timeout_create = 120
cpu {
cores = each.value.cores
type = "host"
}
memory {
dedicated = each.value.memory
}
2024-08-21 21:00:23 +00:00
bios = "ovmf"
efi_disk {
datastore_id = each.value.storage
}
2024-08-21 21:00:23 +00:00
operating_system {
type = "l26"
}
agent {
enabled = true
2024-08-24 10:13:05 +00:00
timeout = "5m"
}
network_device {
bridge = each.value.bridge
mac_address = each.value.mac_address
}
scsi_hardware = "virtio-scsi-single"
disk {
2024-08-21 21:00:23 +00:00
file_id = proxmox_virtual_environment_file.ingress.id
file_format = "qcow2"
interface = "virtio0"
datastore_id = each.value.storage
size = each.value.boot_size
backup = true
cache = "none"
iothread = true
}
initialization {
datastore_id = each.value.storage
2024-08-24 10:13:05 +00:00
user_data_file_id = proxmox_virtual_environment_file.cloudinit[each.key].id
}
}