diff --git a/inventory_provider/config.py b/inventory_provider/config.py
index 9000efbddd2178b9b57b47948b3f4869aa0c702d..11bec6256fb7e75f587fd88358d731f28bea3f0f 100644
--- a/inventory_provider/config.py
+++ b/inventory_provider/config.py
@@ -54,16 +54,6 @@ CONFIG_SCHEMA = {
             "required": ["hostname", "port", "name"],
             "additionalProperties": False
         },
-        "junosspace-credentials": {
-            "type": "object",
-            "properties": {
-                "api": {"type": "string"},
-                "username": {"type": "string"},
-                "password": {"type": "string"}
-            },
-            "required": ["api", "username", "password"],
-            "additionalProperties": False
-        },
         "interface-address": {
             "type": "object",
             "properties": {
@@ -88,7 +78,7 @@ CONFIG_SCHEMA = {
             "minItems": 1,
             "items": {"type": "integer"}
         },
-        "junosspace": {"$ref": "#/definitions/junosspace-credentials"},
+        "managed-routers": {"type": "string"},
         "unmanaged-interfaces": {
             "type": "array",
             "items": {"$ref": "#/definitions/interface-address"}
@@ -101,7 +91,7 @@ CONFIG_SCHEMA = {
                 "ssh",
                 "redis",
                 "redis-databases",
-                "junosspace"]
+                "managed-routers"]
         },
         {
             "required": [
@@ -109,7 +99,7 @@ CONFIG_SCHEMA = {
                 "ssh",
                 "sentinel",
                 "redis-databases",
-                "junosspace"]
+                "managed-routers"]
         }
     ],
     "additionalProperties": False