From 97b9e19c5ba767dfbdf3ef20825a058b575c50e9 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Tue, 20 May 2025 14:48:42 +0200 Subject: [PATCH] Solved variable --- cli/utils/manager/inventory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/utils/manager/inventory.py b/cli/utils/manager/inventory.py index c286fed3..6a8ad9bd 100644 --- a/cli/utils/manager/inventory.py +++ b/cli/utils/manager/inventory.py @@ -44,7 +44,7 @@ class InventoryManager: "central_database" in data["features"] and \ data["features"]["central_database"]: # Add 'central_database' value (password) to credentials - target.setdefault("credentials", {})["central_database"] = self.generate_value("alphanumeric") + target.setdefault("credentials", {})["database_password"] = self.generate_value("alphanumeric") # Apply recursion only for the `credentials` section self.recurse_credentials(self.schema, target)