mirror of https://github.com/rancher/dartboard.git
bugfix: missing variable passing
Signed-off-by: Silvio Moioli <silvio@moioli.net>
This commit is contained in:
parent
b139bd8504
commit
003251b482
|
|
@ -24,4 +24,7 @@ module "test_environment" {
|
|||
ssh_user = var.ssh_user
|
||||
ssh_private_key_path = var.ssh_private_key_path
|
||||
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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,4 +33,7 @@ module "test_environment" {
|
|||
ssh_user = var.ssh_user
|
||||
ssh_private_key_path = var.ssh_private_key_path
|
||||
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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue