diff --git a/inventory_provider/tasks/worker.py b/inventory_provider/tasks/worker.py
index e23a132fe3e3617be2f66f2b6c1b275954ef8ee9..a299bddc41a10b65a34c9f4c1331e5a5fc431094 100644
--- a/inventory_provider/tasks/worker.py
+++ b/inventory_provider/tasks/worker.py
@@ -691,7 +691,8 @@ class PollerServiceCategory(str, enum.Enum):
     MDVPN = 'mdvpn'
     LHCONE_CUST = 'lhcone_cust'
     LHCONE_PEER = 'lhcone_peer'
-    L2_Circuits = 'l2_circuits'
+    L2_CIRCUITS = 'l2_circuits'
+    AUTOMATED_L2_CIRCUITS = 'automated_l2_circuits'
     IAS = 'ias'
     RE_CUST = 're_cust'
     RE_PEER = 're_peer'
@@ -701,21 +702,29 @@ class PollerServiceCategory(str, enum.Enum):
 def _classify_interface(ifc):
     if ifc['description'].startswith('SRV_MDVPN CUSTOMER'):
         yield PollerServiceCategory.MDVPN
+
     if 'LHCONE' in ifc['description'] \
             and 'SRV_L3VPN CUSTOMER' in ifc['description']:
         yield PollerServiceCategory.LHCONE_CUST
+
     if 'LHCONE' in ifc['description'] \
             and 'SRV_L3VPN RE' in ifc['description']:
         yield PollerServiceCategory.LHCONE_PEER
-    if 'SRV_L2CIRCUIT' in ifc['description'] \
-            and 'SRV_L3VPN' in ifc['description']:
-        yield PollerServiceCategory.L2_Circuits
+
+    if 'SRV_L2CIRCUIT' in ifc['description']:
+        yield PollerServiceCategory.L2_CIRCUITS
+
+    if 'SRV_GCS' in ifc['description']:
+        yield PollerServiceCategory.AUTOMATED_L2_CIRCUITS
+
     if 'PHY CUSTOMER' in ifc['description'] \
-            and 'LAG CUSTOMER' in ifc['description'] \
-            and 'SRV_GLOBAL CUSTOMER' in ifc['description']:
+            or 'LAG CUSTOMER' in ifc['description'] \
+            or 'SRV_GLOBAL CUSTOMER' in ifc['description']:
         yield PollerServiceCategory.RE_CUST
+
     if 'SRV_GLOBAL RE_INTERCONNECT' in ifc['description']:
         yield PollerServiceCategory.RE_PEER
+
     if 'SRV_IAS CUSTOMER' in ifc['description']:
         yield PollerServiceCategory.IAS