feat(tags): Proxmox VM metadata convention (managed-by=terraform)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
sjat 2026-06-06 09:39:19 +02:00
parent 0b59107b33
commit 9584cc2c76
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ module "vms" {
ssh_public_keys = var.ssh_public_keys
cores = each.value.cores
memory_mb = each.value.memory_mb
tags = ["production", each.value.group]
tags = ["production", each.value.group, "managed-by=terraform"]
}
# Internal DNS records are NOT managed here. Terraform owns VM existence only;

View file

@ -29,7 +29,7 @@ module "vms" {
ssh_public_keys = var.ssh_public_keys
cores = each.value.cores
memory_mb = each.value.memory_mb
tags = ["staging", each.value.group]
tags = ["staging", each.value.group, "managed-by=terraform"]
}
# Internal DNS records are NOT managed here. Terraform owns VM existence only;