From 22206e7e10eab5192afa4be875e3002496e82377 Mon Sep 17 00:00:00 2001 From: Aleksandr Kurbatov <ak@geant.org> Date: Wed, 16 Oct 2024 17:35:25 +0200 Subject: [PATCH] fix in inventory structure --- gso/utils/workflow_steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gso/utils/workflow_steps.py b/gso/utils/workflow_steps.py index 2095e762..70d6d110 100644 --- a/gso/utils/workflow_steps.py +++ b/gso/utils/workflow_steps.py @@ -340,7 +340,7 @@ def run_checks_after_base_config(subscription: dict[str, Any]) -> LSOState: """Workflow step for running show commands after installing base config.""" return { "playbook_name": "base_config_checks.yaml", - "inventory": {"all": {"hosts": {subscription["router"]["router_fqdn"]}}}, + "inventory": {"all": {"hosts": {subscription["router"]["router_fqdn"]: None}}}, "extra_vars": {"wfo_router_json": subscription}, } -- GitLab