aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/manager.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/leap_cli/config/manager.rb')
-rw-r--r--lib/leap_cli/config/manager.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/leap_cli/config/manager.rb b/lib/leap_cli/config/manager.rb
index 90c4db0..d6cb89e 100644
--- a/lib/leap_cli/config/manager.rb
+++ b/lib/leap_cli/config/manager.rb
@@ -61,6 +61,14 @@ module LeapCli
@provider = load_json(provider_path, Config::Object)
@secrets = load_json(Path.named_path(:secrets_config, @provider_dir), Config::Secrets)
+ ### BEGIN HACK
+ ### remove this after it is likely that no one has any old-style secrets.json
+ if @secrets['webapp_secret_token']
+ @secrets = Config::Secrets.new
+ Util::log :warning, "Creating all new secrets.json (new version is scoped by environment). Make sure to do a full deploy so that new secrets take effect."
+ end
+ ### END HACK
+
# inherit
@services.inherit_from! base_services
@tags.inherit_from! base_tags