“fmt”

This commit is contained in:
CC
2026-06-19 08:47:47 +01:00
parent 3935312ae1
commit bae9a8a60a
11 changed files with 103 additions and 103 deletions

View File

@@ -10,7 +10,7 @@ locals {
vm_name = v.vm_name
node_name = v.node_name
ipv4_address = module.vm-n8n[k].vm_ipv4_address
vm_tags = concat(
vm_tags = concat(
try(v.vm_tags, []),
["terraform", "docker", v.service_name, "ip-${replace(module.vm-n8n[k].vm_ipv4_address, ".", "-")}"]
)
@@ -31,7 +31,7 @@ module "vm-n8n" {
vm_size = coalesce(try(each.value.vm_size, null), var.vm_defaults.vm_size)
vm_bios = var.vm_defaults.vm_bios
vm_machine = var.vm_defaults.vm_machine
vm_tags = concat(
vm_tags = concat(
try(each.value.vm_tags, []),
["terraform", "docker", each.value.service_name]
)
@@ -39,8 +39,8 @@ module "vm-n8n" {
}
module "inventory" {
source = "./modules/proxmox_ansible_inventory"
filename = "${abspath("${path.root}/..")}/ansible/inventory/inventory.yml"
source = "./modules/proxmox_ansible_inventory"
filename = "${abspath("${path.root}/..")}/ansible/inventory/inventory.yml"
instances = local.vm_created
}