diff --git a/cms/envs/common.py b/cms/envs/common.py
index 3214e7231aed36ee7b7f24aeeb2bb960cda34bb6..16884037b634d80d1882daa639f83355d6e4e151 100644
--- a/cms/envs/common.py
+++ b/cms/envs/common.py
@@ -168,7 +168,7 @@ FEATURES = {
     },
 
     # Teams feature
-    'ENABLE_TEAMS': False,
+    'ENABLE_TEAMS': True,
 
     # Show video bumper in Studio
     'ENABLE_VIDEO_BUMPER': False,
diff --git a/common/lib/xmodule/xmodule/course_module.py b/common/lib/xmodule/xmodule/course_module.py
index 808279b20e125099960877a7ecf1419bcc302462..b9c4096ed1ed59378a45ede6f86d7c5b4980ec22 100644
--- a/common/lib/xmodule/xmodule/course_module.py
+++ b/common/lib/xmodule/xmodule/course_module.py
@@ -904,7 +904,8 @@ class CourseFields(object):
             "Enter configuration for the teams feature. Expects two entries: max_team_size and topics, where "
             "topics is a list of topics."
         ),
-        scope=Scope.settings
+        scope=Scope.settings,
+        deprecated=True,  # Deprecated until the teams feature is made generally available
     )
 
     enable_proctored_exams = Boolean(
diff --git a/common/test/acceptance/pages/studio/settings_advanced.py b/common/test/acceptance/pages/studio/settings_advanced.py
index 3046abe8bc55c66957f5d64146c219a04fe101bd..c96ce12e7f4a9f376b9002fa1de52c918a812fd2 100644
--- a/common/test/acceptance/pages/studio/settings_advanced.py
+++ b/common/test/acceptance/pages/studio/settings_advanced.py
@@ -199,7 +199,6 @@ class AdvancedSettingsPage(CoursePage):
             'text_customization',
             'annotation_storage_url',
             'social_sharing_url',
-            'teams_configuration',
             'video_bumper',
             'cert_html_view_enabled',
             'enable_proctored_exams',
diff --git a/lms/envs/common.py b/lms/envs/common.py
index 2add2dd585bd9650b968990c0dfc698637443806..1e52d20ab70aa77d2235d5e8b087789b39db2216 100644
--- a/lms/envs/common.py
+++ b/lms/envs/common.py
@@ -396,7 +396,7 @@ FEATURES = {
     'ENABLE_SOFTWARE_SECURE_FAKE': False,
 
     # Teams feature
-    'ENABLE_TEAMS': False,
+    'ENABLE_TEAMS': True,
 
     # Show video bumper in LMS
     'ENABLE_VIDEO_BUMPER': False,