chore: Move modules to root directory
This commit is contained in:
parent
649f1ba598
commit
c8c4c8355b
9 changed files with 3 additions and 3 deletions
|
|
@ -94,7 +94,7 @@ locals {
|
||||||
}
|
}
|
||||||
|
|
||||||
module "controlplanes" {
|
module "controlplanes" {
|
||||||
source = "./modules/talos-node"
|
source = "../../modules/talos-node"
|
||||||
for_each = { for node in local.controlplanes.nodes : node.name => node }
|
for_each = { for node in local.controlplanes.nodes : node.name => node }
|
||||||
|
|
||||||
node = {
|
node = {
|
||||||
|
|
@ -116,7 +116,7 @@ module "controlplanes" {
|
||||||
}
|
}
|
||||||
|
|
||||||
module "workers" {
|
module "workers" {
|
||||||
source = "./modules/talos-node"
|
source = "../../modules/talos-node"
|
||||||
for_each = { for node in local.workers.nodes : node.name => node }
|
for_each = { for node in local.workers.nodes : node.name => node }
|
||||||
|
|
||||||
node = {
|
node = {
|
||||||
|
|
@ -145,7 +145,7 @@ module "talos-bootstrap" {
|
||||||
module.workers
|
module.workers
|
||||||
]
|
]
|
||||||
|
|
||||||
source = "./modules/talos-bootstrap"
|
source = "../../modules/talos-bootstrap"
|
||||||
|
|
||||||
node_config = {
|
node_config = {
|
||||||
ipv4_gateway = local.ipv4_gateway
|
ipv4_gateway = local.ipv4_gateway
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue