{
-    "tosca_definitions_version": "tosca_simple_yaml_1_0_0",
+    "tosca_definitions_version": "tosca_simple_yaml_1_1_0",
     "topology_template": {
         "policies": [
             {
                 "onap.vfirewall.tca": {
                     "type": "onap.policies.monitoring.cdap.tca.hi.lo.app",
+                    "type_version": "1.0.0",
                     "version": "1.0.0",
                     "metadata": {
                         "policy-id": "onap.vfirewall.tca"
                                     "controlLoopSchemaType": "VM",
                                     "policyScope": "DCAE",
                                     "policyName": "DCAE.Config_tca-hi-lo",
-                                    "policyVersion": "v0.0.1",
+                                    "policyVersion": "1.0.0",
                                     "thresholds": [
                                         {
-                                            "closedLoopControlName": "ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a",
+                                            "closedLoopControlName": "ControlLoop-vFirewall-{{RESOURCE_ID}}",
                                             "closedLoopEventStatus": "ONSET",
                                             "version": "1.0.2",
                                             "fieldPath": "$$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta",
                                             "severity": "MAJOR"
                                         },
                                         {
-                                            "closedLoopControlName": "ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a",
+                                            "closedLoopControlName": "ControlLoop-vFirewall-{{RESOURCE_ID}}",
                                             "closedLoopEventStatus": "ONSET",
                                             "version": "1.0.2",
                                             "fieldPath": "$$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedTotalPacketsDelta",
             }
         ]
     }
-}
\ No newline at end of file
+}
 
   "policies": [
     {
       "policy-id": "onap.vfirewall.tca",
-      "policy-version": 1
+      "policy-version": "1.0.0"
     },
     {
       "policy-id": "operational.modifyconfig",
       "policy-version": "{{OP_POLICY_VERSION}}.0.0"
     }
   ]
-}
\ No newline at end of file
+}
 
 Update vVFWCL Policy
     [Arguments]   ${resource_id}
     Log   Create vFWCL Monitoring Policy
-    Create vFirewall Monitoring Policy
+    Create vFirewall Monitoring Policy    ${resource_id}
     Sleep   5s
     Log   Create vFWCL Operational Policy
     ${op_policy_version}=   Create vFirewall Operational Policy   ${resource_id}
     Should Be Equal As Strings         ${resp.status_code}     200
 
 Create vFirewall Monitoring Policy
-     ${dict}=   Create Dictionary
+    [Arguments]   ${resource_id}
+     ${dict}=   Create Dictionary   RESOURCE_ID=${resource_id}
     Templating.Create Environment    policy    ${GLOBAL_TEMPLATE_FOLDER}
      ${data}=   Templating.Apply Template    policy    ${POLICY_TEMPLATES}/vFirewall_policy_monitoring_input_tosca.jinja    ${dict}
      ${resp}=   Run Policy Api Post Request    /policy/api/v1/policytypes/onap.policies.monitoring.cdap.tca.hi.lo.app/versions/1.0.0/policies     ${data}