bugfix: missing variable passing

Signed-off-by: Silvio Moioli <silvio@moioli.net>
This commit is contained in:
Silvio Moioli 2024-12-19 12:51:48 +01:00
parent b139bd8504
commit 003251b482
No known key found for this signature in database
2 changed files with 6 additions and 0 deletions

View File

@ -24,4 +24,7 @@ module "test_environment" {
ssh_user = var.ssh_user ssh_user = var.ssh_user
ssh_private_key_path = var.ssh_private_key_path ssh_private_key_path = var.ssh_private_key_path
network_backend_variables = module.network.backend_variables network_backend_variables = module.network.backend_variables
first_kubernetes_api_port = var.first_kubernetes_api_port
first_app_http_port = var.first_app_http_port
first_app_https_port = var.first_app_https_port
} }

View File

@ -33,4 +33,7 @@ module "test_environment" {
ssh_user = var.ssh_user ssh_user = var.ssh_user
ssh_private_key_path = var.ssh_private_key_path ssh_private_key_path = var.ssh_private_key_path
network_backend_variables = module.network.backend_variables network_backend_variables = module.network.backend_variables
first_kubernetes_api_port = var.first_kubernetes_api_port
first_app_http_port = var.first_app_http_port
first_app_https_port = var.first_app_https_port
} }