From f0e7143b8d1ee28dfc9fd87b5bd34597d90fbdcc Mon Sep 17 00:00:00 2001 From: Andrew Dryga Date: Wed, 3 Apr 2024 18:28:38 -0600 Subject: [PATCH] Allow enabling beta features on prod --- terraform/environments/production/portal.tf | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/terraform/environments/production/portal.tf b/terraform/environments/production/portal.tf index 64b890870..b3baab209 100644 --- a/terraform/environments/production/portal.tf +++ b/terraform/environments/production/portal.tf @@ -330,10 +330,26 @@ locals { }) }, # Feature Flags + { + name = "FEATURE_FLOW_ACTIVITIES_ENABLED" + value = true + }, + { + name = "FEATURE_TRAFFIC_FILTERS_ENABLED" + value = true + }, + { + name = "FEATURE_SELF_HOSTED_RELAYS_ENABLED" + value = true + }, + { + name = "FEATURE_MULTI_SITE_RESOURCES_ENABLED" + value = true + }, { name = "FEATURE_SIGN_UP_ENABLED" value = true - } + }, ] }