chore: Move modules to root directory

This commit is contained in:
Peter 2026-01-26 10:57:01 +01:00
parent 649f1ba598
commit c8c4c8355b
Signed by: Peter
SSH key fingerprint: SHA256:B5tYaxBExaDm74r1px9iVeZ6F/ZDiyiy9SbBqfZYrvg
9 changed files with 3 additions and 3 deletions

View file

@ -94,7 +94,7 @@ locals {
}
module "controlplanes" {
source = "./modules/talos-node"
source = "../../modules/talos-node"
for_each = { for node in local.controlplanes.nodes : node.name => node }
node = {
@ -116,7 +116,7 @@ module "controlplanes" {
}
module "workers" {
source = "./modules/talos-node"
source = "../../modules/talos-node"
for_each = { for node in local.workers.nodes : node.name => node }
node = {
@ -145,7 +145,7 @@ module "talos-bootstrap" {
module.workers
]
source = "./modules/talos-bootstrap"
source = "../../modules/talos-bootstrap"
node_config = {
ipv4_gateway = local.ipv4_gateway