Add blueprint to VLB deployment artifacts

Issue-ID: INT-808
Change-Id: Ib8b091fd2d5ba1e0dc3cef51521c3da3658a5ac5
Signed-off-by: Brian Freeman <bf1936@att.com>
diff --git a/robot/assets/service_mappings.py b/robot/assets/service_mappings.py
index 15f7d79..fb06b44 100644
--- a/robot/assets/service_mappings.py
+++ b/robot/assets/service_mappings.py
@@ -53,6 +53,24 @@
 }
 '''
 
+Map the service to the list of Deployment Artifacts for Closed Loop Control
+
+'''
+GLOBAL_SERVICE_DEPLOYMENT_ARTIFACT_MAPPING = {
+    "vCPEInfra" : [],
+    "vCPEvBNG" : [],
+    "vCPEvGMUX" : [],
+    "vCPEvBRGEMU" :[],
+    "vCPEvGW" :[],
+    "vCPERestCust" :[],
+    "vFW" :[],
+    "vLB" :['tca_docker_k8s_v4.yaml'],
+    "vVG" :[],
+    "vFWCL" :[],
+    "vFWNG" :[],
+}
+'''
+
 
 
 This metadata identifes the preloads that need to be done for a VNF as there may be more than one (vLB)
@@ -61,7 +79,7 @@
     i.e. GLOBAL_PRELOAD_PARAMETERS['Demo'][dnsscaling_preload.template']
 '''
 GLOBAL_SERVICE_TEMPLATE_MAPPING = {
-	"vFW"  : [{"isBase" : "true", "template" : "vfw_preload.template", "name_pattern": "base_vfw"}],
+        "vFW"  : [{"isBase" : "true", "template" : "vfw_preload.template", "name_pattern": "base_vfw"}],
     "vLB"  : [{"isBase" : "true",   "template" : "vlb_preload.template", "name_pattern": "base_vlb"},
               {"isBase" : "false",  "template" : "dnsscaling_preload.template", "name_pattern": "dnsscaling", "prefix" : "vDNS_"}],
     "vVG"  : [{"isBase" : "true",   "template" : "vvg_preload.template", "name_pattern": "base_vvg"}],