Added Linux NVA.

This commit is contained in:
2025-03-31 21:37:06 +02:00
parent bd16823f66
commit da3893a912
+10 -1
View File
@@ -92,7 +92,16 @@ module "to_lazurowa" {
local_selectors = [var.hub.cidr, var.spoke.cidr] local_selectors = [var.hub.cidr, var.spoke.cidr]
remote_selectors = var.remote_selectors remote_selectors = var.remote_selectors
depends_on = [module.gw] module "vm_gw" {
source = "./modules/linux-vm"
name = "vm-${var.hub.name}-gw"
network_name = "${var.hub.name}-vpc"
subnet_name = "${var.hub.name}-network"
ssh = var.ssh
can_ip_forward = true
depends_on = [module.hub_network]
} }
module "vm_hub" { module "vm_hub" {