Adding BW Profile to onf-demo-pod subscribers

Change-Id: If55d9bb27e60defd6ee9a835427c6c7da7e37e9b
diff --git a/tosca-configs/att-workflow/onf-demo-pod-subscriber.yaml b/tosca-configs/att-workflow/onf-demo-pod-subscriber.yaml
index a95968f..a9b4e37 100755
--- a/tosca-configs/att-workflow/onf-demo-pod-subscriber.yaml
+++ b/tosca-configs/att-workflow/onf-demo-pod-subscriber.yaml
@@ -17,12 +17,19 @@
 tosca_definitions_version: tosca_simple_yaml_1_0
 imports:
   - custom_types/rcordsubscriber.yaml
+  - custom_types/bandwidthprofile.yaml
 
 description: Pre-provsion subscribers
 
 topology_template:
   node_templates:
 
+    default_bp:
+      type: tosca.nodes.BandwidthProfile
+      properties:
+         name: Default
+         must-exist: true
+
     # EdgeCore OLT subscribers
     edgecore_iskratel_subscriber:
       type: tosca.nodes.RCORDSubscriber
@@ -35,3 +42,10 @@
         nas_port_id : "PON 1/1/04/1:1.1.1"
         circuit_id: edgecore_iskratel_circuit
         remote_id: edgecore_iskratel_remote
+      requirements:
+        - upstream_bps:
+            node: default_bp
+            relationship: tosca.relationships.BelongsToOne
+        - downstream_bps:
+            node: default_bp
+            relationship: tosca.relationships.BelongsToOne