From 6f7dc095db2079609a49cc0264e6bc25d24fe1fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20V=C3=89RET?= Date: Thu, 23 Oct 2025 09:14:47 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8:=20move=20modules=20to=20its=20own?= =?UTF-8?q?=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.tf | 2 +- .../proxmox_lxc_container}/locals.tf | 0 .../proxmox_lxc_container}/main.tf | 0 .../proxmox_lxc_container}/outputs.tf | 0 .../proxmox_lxc_container}/providers.tf | 0 .../proxmox_lxc_container}/variables.tf | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename {proxmox_lxc_container => modules/proxmox_lxc_container}/locals.tf (100%) rename {proxmox_lxc_container => modules/proxmox_lxc_container}/main.tf (100%) rename {proxmox_lxc_container => modules/proxmox_lxc_container}/outputs.tf (100%) rename {proxmox_lxc_container => modules/proxmox_lxc_container}/providers.tf (100%) rename {proxmox_lxc_container => modules/proxmox_lxc_container}/variables.tf (100%) diff --git a/main.tf b/main.tf index 6960264..efd95d9 100644 --- a/main.tf +++ b/main.tf @@ -1,5 +1,5 @@ module "lxc" { - source = "./proxmox_lxc_container" + source = "./modules/proxmox_lxc_container" for_each = var.lxc_containers diff --git a/proxmox_lxc_container/locals.tf b/modules/proxmox_lxc_container/locals.tf similarity index 100% rename from proxmox_lxc_container/locals.tf rename to modules/proxmox_lxc_container/locals.tf diff --git a/proxmox_lxc_container/main.tf b/modules/proxmox_lxc_container/main.tf similarity index 100% rename from proxmox_lxc_container/main.tf rename to modules/proxmox_lxc_container/main.tf diff --git a/proxmox_lxc_container/outputs.tf b/modules/proxmox_lxc_container/outputs.tf similarity index 100% rename from proxmox_lxc_container/outputs.tf rename to modules/proxmox_lxc_container/outputs.tf diff --git a/proxmox_lxc_container/providers.tf b/modules/proxmox_lxc_container/providers.tf similarity index 100% rename from proxmox_lxc_container/providers.tf rename to modules/proxmox_lxc_container/providers.tf diff --git a/proxmox_lxc_container/variables.tf b/modules/proxmox_lxc_container/variables.tf similarity index 100% rename from proxmox_lxc_container/variables.tf rename to modules/proxmox_lxc_container/variables.tf