From c108563100c874329ccc698354c1627216c32807 Mon Sep 17 00:00:00 2001 From: Thomas Rausch Date: Wed, 10 Aug 2022 12:50:07 +0200 Subject: [PATCH] set CONFIG_PROFILE correctly into config variable when running localstack start --- localstack/cli/localstack.py | 1 + 1 file changed, 1 insertion(+) diff --git a/localstack/cli/localstack.py b/localstack/cli/localstack.py index 4ba0238e7ea94..ea46c93f456d3 100644 --- a/localstack/cli/localstack.py +++ b/localstack/cli/localstack.py @@ -47,6 +47,7 @@ def _setup_cli_debug(): def localstack(debug, profile): if profile: os.environ["CONFIG_PROFILE"] = profile + config.CONFIG_PROFILE = profile if debug: _setup_cli_debug()