From 1039e23671497f01ad6258462f48a27b6202c95d Mon Sep 17 00:00:00 2001 From: CroneKorkN Date: Tue, 12 May 2026 22:57:21 +0200 Subject: [PATCH] left4me: prefix steam_web_api_key vault value with !decrypt: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without !decrypt: the encrypt$… string is rendered as a literal into web.env, which then surfaces as 403 Forbidden from the Steam Web API (because the URL key parameter contains "encrypt$gAAA…" instead of the actual API key). Matches the existing pattern used by every other encrypted secret in this repo. Co-Authored-By: Claude Sonnet 4.6 --- nodes/ovh.left4me.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/ovh.left4me.py b/nodes/ovh.left4me.py index 9e5d4a8..baa6540 100644 --- a/nodes/ovh.left4me.py +++ b/nodes/ovh.left4me.py @@ -47,7 +47,7 @@ # /sys/devices/system/cpu/cpu0/topology/thread_siblings_list). # Keeps system work off the physical cores running game ticks. 'system_cpus': {0, 4}, - 'steam_web_api_key': 'encrypt$gAAAAABqA2whFHIw95XJcU9l8oWG-Lwe1ZQbYKDXa1iRI3Oopg3LZIgr--yksABXnKwfB2KIKM9y8o0hhIcUri7JEJjQvgh4IoG0J-IRPBEG56kiW5J4DKi8wW0ks-jeV7lZiW_j9o0z', + 'steam_web_api_key': '!decrypt:encrypt$gAAAAABqA2whFHIw95XJcU9l8oWG-Lwe1ZQbYKDXa1iRI3Oopg3LZIgr--yksABXnKwfB2KIKM9y8o0hhIcUri7JEJjQvgh4IoG0J-IRPBEG56kiW5J4DKi8wW0ks-jeV7lZiW_j9o0z', }, }, }