From df71a05e92807c069285fc3fbf0b45620d62359d Mon Sep 17 00:00:00 2001 From: darnodo Date: Wed, 17 Dec 2025 17:01:42 +0100 Subject: [PATCH] feat(terraform): replace centos with ipfabric in supported os list Update the `supported_os` local variable in `01-virtual-machines.tf` to reflect current provisioning requirements. This change removes `centos` and adds `ipfabric` to the set of allowed operating system templates. --- terraform/prod/01-virtual-machines.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/prod/01-virtual-machines.tf b/terraform/prod/01-virtual-machines.tf index 9944902..3bc31e0 100644 --- a/terraform/prod/01-virtual-machines.tf +++ b/terraform/prod/01-virtual-machines.tf @@ -10,7 +10,7 @@ data "proxmox_virtual_environment_vms" "templates" { # 2. Mapping des templates locals { # OS supportés - supported_os = toset(["ubuntu", "debian", "alpine", "rocky", "centos"]) + supported_os = toset(["ubuntu", "debian", "alpine", "rocky", "ipfabric"]) # Map des templates par OS template_map = {