From bf1358b6659f4987e67e881c7e35a3247a781c16 Mon Sep 17 00:00:00 2001 From: AAfghahi <48933336+AAfghahi@users.noreply.github.com> Date: Wed, 2 Jun 2021 14:51:33 -0400 Subject: [PATCH] feat: Adding FORCE_SSL as feature flag in config.py (#14934) --- superset/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/superset/config.py b/superset/config.py index 2bbb249a87..a6427b528d 100644 --- a/superset/config.py +++ b/superset/config.py @@ -383,6 +383,9 @@ DEFAULT_FEATURE_FLAGS: Dict[str, bool] = { # for report with type 'report' still send with email and slack message with # screenshot and link "ALERTS_ATTACH_REPORTS": True, + # Enabling FORCE_DATABASE_CONNECTIONS_SSL forces all database connections to be + # encrypted before being saved into superset metastore. + "FORCE_DATABASE_CONNECTIONS_SSL": False, } # Feature flags may also be set via 'SUPERSET_FEATURE_' prefixed environment vars.