Make Cassandra port configurable.
[sdc.git] / catalog-be / src / main / resources / config / configuration.yaml
1 identificationHeaderFields:
2    - HTTP_IV_USER
3    - HTTP_CSP_FIRSTNAME
4    - HTTP_CSP_LASTNAME
5    - HTTP_IV_REMOTE_ADDRESS
6    - HTTP_CSP_WSTYPE
7
8 # catalog backend hostname
9 beFqdn: localhost
10 # sdccatalog.com
11
12 # catalog backend http port
13 beHttpPort: 8080
14
15 # catalog backend http context
16 beContext: /sdc/rest/config/get
17
18 # catalog backend protocol
19 beProtocol: http
20
21 # catalog backend ssl port
22 beSslPort: 8443
23
24 version: 1.1.0
25 released: 2012-11-30
26 toscaConformanceLevel: 9.0
27 minToscaConformanceLevel: 3.0
28
29 # These values are necessary for running upgrade migration 1710.0 process
30 enableAutoHealing: false
31 appVersion: 1.1.0
32 resourcesForUpgrade:
33  8.0:
34   - org.openecomp.resource.cp.extCP
35   - tosca.nodes.network.Network
36   - tosca.nodes.network.Port
37   - org.openecomp.resource.cp.nodes.network.SubInterface
38 skipUpgradeFailedVfs: true
39 skipUpgradeVSPs: true
40 autoHealingOwner: jh0003
41 supportAllottedResourcesAndProxy: true
42 deleteLockTimeoutInSeconds: 60
43 maxDeleteComponents: 10
44
45 titanCfgFile: /home/vagrant/catalog-be/config/catalog-be/titan.properties
46 titanInMemoryGraph: false
47 titanLockTimeout: 1800
48
49 # The interval to try and reconnect to titan DB when it is down during ASDC startup:
50 titanReconnectIntervalInSeconds: 3
51
52 # The read timeout towards Titan DB when health check is invoked:
53 titanHealthCheckReadTimeout: 1
54
55 # The interval to try and reconnect to Elasticsearch when it is down during ASDC startup:
56 esReconnectIntervalInSeconds: 3
57 uebHealthCheckReconnectIntervalInSeconds: 15
58 uebHealthCheckReadTimeout: 4
59
60 # Protocols
61 protocols:
62    - http
63    - https
64
65 # Default imports
66 defaultImports:
67    - nodes:
68         file: nodes.yml
69    - datatypes:
70         file: data.yml
71    - capabilities:
72         file: capabilities.yml
73    - relationships:
74         file: relationships.yml
75    - groups:
76         file: groups.yml
77    - policies:
78         file: policies.yml
79    - annotations:
80         file: annotations.yml
81
82 # Users
83 users:
84     tom: passwd
85     bob: passwd
86
87 neo4j:
88     host: neo4jhost
89     port: 7474
90     user: neo4j
91     password: "12345"
92
93 cassandraConfig:
94     cassandraHosts: [192.168.33.10]
95     cassandraPort: 9042
96     localDataCenter: DC-sdc-iltlv650
97     reconnectTimeout : 30000
98     authenticate: true
99     username: asdc_user
100     password: Aa1234%^!
101     ssl: true
102     truststorePath : /opt/app/jetty/base/be/config/.truststore
103     truststorePassword : Aa123456
104     keySpaces:
105         - { name: dox, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
106         - { name: sdcaudit, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
107         - { name: sdcartifact, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
108         - { name: sdccomponent, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}       
109         - { name: sdcrepository, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
110
111
112 #Application-specific settings of ES
113 elasticSearch:
114     # Mapping of index prefix to time-based frame. For example, if below is configured:
115     #
116     # - indexPrefix: auditingevents
117     #    creationPeriod: minute
118     #
119     # then ES object of type which is mapped to "auditingevents-*" template, and created on 2015-12-23 13:24:54, will enter "auditingevents-2015-12-23-13-24" index.
120     # Another object created on 2015-12-23 13:25:54, will enter "auditingevents-2015-12-23-13-25" index.
121     # If creationPeriod: month, both of the above will enter "auditingevents-2015-12" index.
122     #
123     # PLEASE NOTE: the timestamps are created in UTC/GMT timezone! This is needed so that timestamps will be correctly presented in Kibana.
124     #
125     # Legal values for creationPeriod - year, month, day, hour, minute, none (meaning no time-based behaviour).
126     #
127     # If no creationPeriod is configured for indexPrefix, default behavour is creationPeriod: month.
128     
129     indicesTimeFrequency:
130       - indexPrefix: auditingevents
131         creationPeriod: month
132       - indexPrefix: monitoring_events
133         creationPeriod: month
134
135 artifactTypes:
136    - CHEF
137    - PUPPET
138    - SHELL
139    - YANG
140    - YANG_XML
141    - HEAT
142    - BPEL
143    - DG_XML
144    - MURANO_PKG
145    - WORKFLOW
146    - NETWORK_CALL_FLOW
147    - TOSCA_TEMPLATE
148    - TOSCA_CSAR
149    - AAI_SERVICE_MODEL
150    - AAI_VF_MODEL
151    - AAI_VF_MODULE_MODEL
152    - AAI_VF_INSTANCE_MODEL
153    - OTHER
154    - SNMP_POLL
155    - SNMP_TRAP
156    - GUIDE
157
158 licenseTypes:
159    - User
160    - Installation
161    - CPU
162
163 #Deployment artifacts placeHolder
164 resourceTypes: &allResourceTypes
165   - VFC
166   - CP
167   - VL
168   - VF
169   - CR
170   - VFCMT
171   - Abstract
172   - CVFC
173
174 # validForResourceTypes usage
175 #     validForResourceTypes:
176 #        - VF
177 #        - VL
178 deploymentResourceArtifacts:
179 #  heat:
180 #      displayName: "Base HEAT Template"
181 #      type: HEAT
182 #      validForResourceTypes: *allResourceTypes
183 #  heatVol:
184 #      displayName: "Volume HEAT Template"
185 #      type: HEAT_VOL
186 #      validForResourceTypes: *allResourceTypes
187 #  heatNet:
188 #      displayName: "Network HEAT Template"
189 #      type: HEAT_NET
190 #      validForResourceTypes: *allResourceTypes
191
192 deploymentResourceInstanceArtifacts:
193   heatEnv:
194       displayName: "HEAT ENV"
195       type: HEAT_ENV
196       description: "Auto-generated HEAT Environment deployment artifact"
197       fileExtension: "env"
198   VfHeatEnv:
199       displayName: "VF HEAT ENV"
200       type: HEAT_ENV
201       description: "VF Auto-generated HEAT Environment deployment artifact"
202       fileExtension: "env"
203
204 #tosca artifacts placeholders
205 toscaArtifacts:
206   assetToscaTemplate:
207       artifactName: -template.yml
208       displayName: Tosca Template
209       type: TOSCA_TEMPLATE
210       description: TOSCA representation of the asset
211   assetToscaCsar:
212       artifactName: -csar.csar
213       displayName: Tosca Model
214       type: TOSCA_CSAR
215       description: TOSCA definition package of the asset
216
217
218 #Informational artifacts placeHolder
219 excludeResourceCategory:
220   - Generic
221 excludeResourceType:
222   - PNF
223   - CR
224 informationalResourceArtifacts:
225   features:
226       displayName: Features
227       type: OTHER
228   capacity:
229       displayName: Capacity
230       type: OTHER
231   vendorTestResult:
232       displayName: Vendor Test Result
233       type: OTHER
234   testScripts:
235       displayName: Test Scripts
236       type: OTHER
237   CloudQuestionnaire:
238       displayName: Cloud Questionnaire (completed)
239       type: OTHER
240   HEATTemplateFromVendor:
241       displayName: HEAT Template from Vendor
242       type: HEAT
243   resourceSecurityTemplate:
244       displayName: Resource Security Template
245       type: OTHER
246
247 excludeServiceCategory:
248
249 informationalServiceArtifacts:
250   serviceArtifactPlan:
251       displayName: Service Artifact Plan
252       type: OTHER
253   summaryOfImpactsToECOMPElements:
254       displayName: Summary of impacts to ECOMP elements,OSSs, BSSs
255       type: OTHER
256   controlLoopFunctions:
257       displayName: Control Loop Functions
258       type: OTHER
259   dimensioningInfo:
260       displayName: Dimensioning Info
261       type: OTHER
262   affinityRules:
263       displayName: Affinity Rules
264       type: OTHER
265   operationalPolicies:
266       displayName: Operational Policies
267       type: OTHER
268   serviceSpecificPolicies:
269       displayName: Service-specific Policies
270       type: OTHER
271   engineeringRules:
272       displayName: Engineering Rules (ERD)
273       type: OTHER
274   distributionInstructions:
275       displayName: Distribution Instructions
276       type: OTHER
277   certificationTestResults:
278       displayName: TD Certification Test Results
279       type: OTHER
280   deploymentVotingRecord:
281       displayName: Deployment Voting Record
282       type: OTHER
283   serviceQuestionnaire:
284       displayName: Service Questionnaire
285       type: OTHER
286   serviceSecurityTemplate:
287       displayName: Service Security Template
288       type: OTHER
289
290 serviceApiArtifacts:
291   configuration:
292       displayName: Configuration
293       type: OTHER
294   instantiation:
295       displayName: Instantiation
296       type: OTHER
297   monitoring:
298       displayName: Monitoring
299       type: OTHER
300   reporting:
301       displayName: Reporting
302       type: OTHER
303   logging:
304       displayName: Logging
305       type: OTHER
306   testing:
307       displayName: Testing
308       type: OTHER
309
310 additionalInformationMaxNumberOfKeys: 50
311
312 systemMonitoring:
313     enabled: false
314     isProxy: false
315     probeIntervalInSeconds: 15
316
317 defaultHeatArtifactTimeoutMinutes: 60
318
319 serviceDeploymentArtifacts:
320     YANG_XML:
321         acceptedTypes:
322             - xml
323     VNF_CATALOG:
324         acceptedTypes:
325             - xml
326     MODEL_INVENTORY_PROFILE:
327         acceptedTypes:
328             - xml
329     MODEL_QUERY_SPEC:
330         acceptedTypes:
331             - xml
332     UCPE_LAYER_2_CONFIGURATION:
333         acceptedTypes:
334             - xml
335
336 #AAI Artifacts
337     AAI_SERVICE_MODEL:
338         acceptedTypes:
339             - xml
340     AAI_VF_MODULE_MODEL:
341         acceptedTypes:
342             - xml
343     AAI_VF_INSTANCE_MODEL:
344         acceptedTypes:
345             - xml 
346     CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT:
347         acceptedTypes:
348             - zip
349     OTHER:
350         acceptedTypes:
351
352 resourceDeploymentArtifacts:
353     HEAT:
354         acceptedTypes:
355             - yaml
356             - yml
357         validForResourceTypes: *allResourceTypes
358     HEAT_VOL:
359         acceptedTypes:
360             - yaml
361             - yml
362         validForResourceTypes: *allResourceTypes
363     HEAT_NET:
364         acceptedTypes:
365             - yaml
366             - yml
367         validForResourceTypes: *allResourceTypes
368     HEAT_NESTED:
369         acceptedTypes:
370             - yaml
371             - yml
372         validForResourceTypes: *allResourceTypes
373     HEAT_ARTIFACT:
374         acceptedTypes:
375         validForResourceTypes: *allResourceTypes
376     CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT:
377         acceptedTypes:
378             - zip
379         validForResourceTypes: *allResourceTypes
380     YANG_XML:
381         acceptedTypes:
382             - xml
383         validForResourceTypes: *allResourceTypes
384     VNF_CATALOG:
385         acceptedTypes:
386             - xml
387         validForResourceTypes: *allResourceTypes
388     VF_LICENSE:
389         acceptedTypes:
390             - xml
391         validForResourceTypes: *allResourceTypes
392     VENDOR_LICENSE:
393         acceptedTypes:
394             - xml
395         validForResourceTypes: *allResourceTypes
396     MODEL_INVENTORY_PROFILE:
397         acceptedTypes:
398             - xml
399         validForResourceTypes: *allResourceTypes
400     MODEL_QUERY_SPEC:
401         acceptedTypes:
402             - xml
403         validForResourceTypes: *allResourceTypes
404     LIFECYCLE_OPERATIONS:
405         acceptedTypes:
406             - yaml
407             - yml
408         validForResourceTypes:
409             - VF
410             - VFC
411     VES_EVENTS:
412         acceptedTypes:
413             - yaml
414             - yml
415         validForResourceTypes:
416             - VFC
417             - CP
418             - VL
419             - VF
420             - CR
421             - VFCMT
422             - Abstract
423             - CVFC
424             - PNF
425     PERFORMANCE_COUNTER:
426         acceptedTypes:
427             - csv
428         validForResourceTypes: *allResourceTypes
429     APPC_CONFIG:
430         acceptedTypes:
431         validForResourceTypes:
432             - VF
433     DCAE_TOSCA:
434         acceptedTypes:
435             - yml
436             - yaml
437         validForResourceTypes:
438             - VF
439             - VFCMT
440     DCAE_JSON:
441         acceptedTypes:
442             - json
443         validForResourceTypes:
444             - VF
445             - VFCMT
446     DCAE_POLICY:
447         acceptedTypes:
448             - emf
449         validForResourceTypes:
450             - VF
451             - VFCMT
452     DCAE_DOC:
453         acceptedTypes:
454         validForResourceTypes:
455             - VF
456             - VFCMT       
457     DCAE_EVENT:
458         acceptedTypes:
459         validForResourceTypes:
460             - VF
461             - VFCMT
462     AAI_VF_MODEL:
463         acceptedTypes:
464             - xml
465         validForResourceTypes:
466             - VF
467     AAI_VF_MODULE_MODEL:
468         acceptedTypes:
469             - xml
470         validForResourceTypes:
471             - VF
472     OTHER:
473         acceptedTypes:
474         validForResourceTypes:
475           - VFC
476           - CP
477           - VL
478           - VF
479           - VFCMT
480           - Abstract
481           - CVFC
482           - PNF
483     SNMP_POLL:
484         acceptedTypes:
485         validForResourceTypes: *allResourceTypes
486     SNMP_TRAP:
487         acceptedTypes:
488         validForResourceTypes: *allResourceTypes
489     PM_DICTIONARY:
490         acceptedTypes:
491             - yaml
492             - yml
493         validForResourceTypes:
494             - VF
495             - PNF
496     YANG_MODULE:
497         acceptedTypes:
498             - yang
499         validForResourceTypes:
500             - VF
501             - PNF
502     ANSIBLE_PLAYBOOK:
503         acceptedTypes:
504             - yaml
505             - yml
506         validForResourceTypes:
507             - VF
508             - PNF
509     ONBOARDED_PACKAGE:
510         acceptedTypes:
511             - csar
512         validForResourceTypes:
513             - VF
514             - PNF
515
516 resourceInstanceDeploymentArtifacts:
517     HEAT_ENV:
518         acceptedTypes:
519             - env
520     VF_MODULES_METADATA:
521         acceptedTypes:
522             - json
523     VES_EVENTS:
524         acceptedTypes:
525             - yaml
526             - yml
527     PERFORMANCE_COUNTER:
528         acceptedTypes:
529             - csv
530     DCAE_INVENTORY_TOSCA:
531         acceptedTypes:
532             - yml
533             - yaml
534     DCAE_INVENTORY_JSON:
535         acceptedTypes:
536             - json
537     DCAE_INVENTORY_POLICY:
538       acceptedTypes:
539             - emf
540     DCAE_INVENTORY_DOC:
541       acceptedTypes:
542     DCAE_INVENTORY_BLUEPRINT:
543       acceptedTypes:
544     DCAE_INVENTORY_EVENT:
545       acceptedTypes:
546     SNMP_POLL:
547         acceptedTypes:
548         validForResourceTypes: *allResourceTypes
549     SNMP_TRAP:
550         acceptedTypes:
551         validForResourceTypes: *allResourceTypes
552
553 resourceInformationalArtifacts:
554     CHEF:
555         acceptedTypes:
556         validForResourceTypes: *allResourceTypes
557     PUPPET:
558         acceptedTypes:
559         validForResourceTypes: *allResourceTypes
560     SHELL:
561         acceptedTypes:
562         validForResourceTypes: *allResourceTypes
563     YANG:
564         acceptedTypes:
565         validForResourceTypes: *allResourceTypes
566     YANG_XML:
567         acceptedTypes:
568         validForResourceTypes: *allResourceTypes
569     HEAT:
570         acceptedTypes:
571         validForResourceTypes: *allResourceTypes
572     BPEL:
573         acceptedTypes:
574         validForResourceTypes: *allResourceTypes
575     DG_XML:
576         acceptedTypes:
577         validForResourceTypes: *allResourceTypes
578     MURANO_PKG:
579         acceptedTypes:
580         validForResourceTypes: *allResourceTypes
581     OTHER:
582         acceptedTypes:
583         validForResourceTypes: 
584             - VFC
585             - CVFC
586             - CP
587             - VL
588             - VF
589             - CR
590             - VFCMT
591             - Abstract
592             - PNF
593     SNMP_POLL:
594         acceptedTypes:
595         validForResourceTypes: *allResourceTypes
596     SNMP_TRAP:
597         acceptedTypes:
598         validForResourceTypes: *allResourceTypes
599     GUIDE:
600         acceptedTypes:
601         validForResourceTypes:
602             - VF
603             - VFC
604             - CVFC
605
606 resourceInformationalDeployedArtifacts:
607
608 requirementsToFulfillBeforeCert:
609
610 capabilitiesToConsumeBeforeCert:
611
612 unLoggedUrls:
613    - /sdc2/rest/healthCheck
614
615 cleanComponentsConfiguration:
616     cleanIntervalInMinutes: 1440
617     componentsToClean:
618        - Resource
619        - Service
620
621 artifactsIndex: resources
622
623 heatEnvArtifactHeader: ""
624 heatEnvArtifactFooter: ""
625
626 onboarding:
627     protocol: http
628     host: localhost
629     port: 8080
630     downloadCsarUri: "/onboarding-api/v1.0/vendor-software-products/packages"
631     healthCheckUri: "/onboarding-api/v1.0/healthcheck"
632
633 dcae:
634     protocol: http
635     host: 127.0.0.1
636     port: 8080
637     healthCheckUri: "/dcae/healthCheck"
638
639 switchoverDetector:
640     gBeFqdn: AIO-BE.ecomp.idns.cip.com
641     gFeFqdn: AIO-FE.ecomp.idns.cip.com
642     beVip: 0.0.0.0
643     feVip: 0.0.0.0
644     beResolveAttempts: 3
645     feResolveAttempts: 3
646     enabled: false
647     interval: 60
648     changePriorityUser: ecompasdc
649     changePriorityPassword: ecompasdc123
650     publishNetworkUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/update_network?user=root"
651     publishNetworkBody: '{"note":"publish network"}'
652     groups:
653       beSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-BE.ecomp.idns.com?user=root",
654                changePriorityBody: '{"name":"AIO-BE.ecomp.idns.com","uri":"/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-BE.ecomp.idns.com","no_ad_redirection":false,"v4groups":{"failover_groups":["/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_mg_be","/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_bs_be"],"failover_policy":["FAILALL"]},"comment":"AIO BE G-fqdn","intended_app_proto":"DNS"}'}
655       feSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-FE.ecomp.idns.com?user=root",
656                changePriorityBody: '{"comment":"AIO G-fqdn","name":"AIO-FE.ecomp.idns.com","v4groups":{"failover_groups":["/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_mg_fe","/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_bs_fe"],"failover_policy":["FAILALL"]},"no_ad_redirection":false,"intended_app_proto":"DNS","uri":"/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-FE.ecomp.idns.com"}'}
657
658 applicationL1Cache:
659     datatypes:
660         enabled: true
661         firstRunDelay: 10
662         pollIntervalInSec: 60
663
664 applicationL2Cache:
665     enabled: true
666     catalogL1Cache:
667         enabled: true
668         resourcesSizeInCache: 300
669         servicesSizeInCache: 200
670         productsSizeInCache: 100
671     queue:
672         syncIntervalInSecondes: 43200
673         waitOnShutDownInMinutes: 10
674         numberOfCacheWorkers: 4
675
676 toscaValidators:
677     stringMaxLength: 2500
678
679 disableAudit: false
680
681 vfModuleProperties:
682     min_vf_module_instances:
683         forBaseModule: 1
684         forNonBaseModule: 0
685     max_vf_module_instances:
686         forBaseModule: 1
687         forNonBaseModule:
688     initial_count:
689         forBaseModule: 1
690         forNonBaseModule: 0
691     vf_module_type:
692         forBaseModule: Base
693         forNonBaseModule: Expansion
694
695 genericAssetNodeTypes:
696   VFC: org.openecomp.resource.abstract.nodes.VFC
697   CVFC: org.openecomp.resource.abstract.nodes.VFC
698   VF : org.openecomp.resource.abstract.nodes.VF
699   CR : org.openecomp.resource.abstract.nodes.CR
700   PNF: org.openecomp.resource.abstract.nodes.PNF
701   Service: org.openecomp.resource.abstract.nodes.service
702
703 workloadContext: Production
704 environmentContext:
705     defaultValue: General_Revenue-Bearing
706     validValues:
707        - Critical_Revenue-Bearing
708        - Vital_Revenue-Bearing
709        - Essential_Revenue-Bearing
710        - Important_Revenue-Bearing
711        - Needed_Revenue-Bearing
712        - Useful_Revenue-Bearing
713        - General_Revenue-Bearing
714        - Critical_Non-Revenue
715        - Vital_Non-Revenue
716        - Essential_Non-Revenue
717        - Important_Non-Revenue
718        - Needed_Non-Revenue
719        - Useful_Non-Revenue
720        - General_Non-Revenue
721
722 dmaapConsumerConfiguration:
723     active: true
724     hosts: olsd004.wnsnet.ws.com:3905
725     consumerGroup: asdc
726     consumerId: mama #mama - in Order To Consume Remove This String And Replace It With -> mama
727     timeoutMs: 15000
728     limit: 1
729     pollingInterval: 2
730     topic: com.sdc.23911-SDCforTestDev-v001
731     latitude: 32.109333
732     longitude: 34.855499
733     version: 1.0
734     serviceName: dmaap-v1.dev.dmaap.dt.saat.acsi.com/events
735     environment: TEST
736     partner: BOT_R
737     routeOffer: MR1
738     protocol: https
739     contenttype: application/json
740     dme2TraceOn: true
741     aftEnvironment: AFTUAT
742     aftDme2ConnectionTimeoutMs: 15000
743     aftDme2RoundtripTimeoutMs: 240000
744     aftDme2ReadTimeoutMs: 50000
745     dme2preferredRouterFilePath: DME2preferredRouter.txt
746     timeLimitForNotificationHandleMs: 120000
747     credential:
748         username: m09875@sdc.com
749         password: mockhmXYcznAljMSisdy8zgcag==
750
751
752         
753 dmeConfiguration:
754     dme2Search: DME2SEARCH
755     dme2Resolve: DME2RESOLVE
756
757
758 excludedPolicyTypesMapping:
759    # VF:
760     #  - a.b.c
761     #  - c.d.e
762     #CR:
763     #  - x.y.z
764
765 excludedGroupTypesMapping:
766     CR:
767        - org.openecomp.groups.VfModule
768        - org.openecomp.groups.heat.HeatStack
769        - tosca.groups.Root
770     PNF:
771        - org.openecomp.groups.VfModule
772        - org.openecomp.groups.heat.HeatStack
773        - tosca.groups.Root
774     VF:
775        - org.openecomp.groups.VfModule
776        - org.openecomp.groups.heat.HeatStack
777        - tosca.groups.Root
778     Service:
779        - org.openecomp.groups.VfModule
780        - org.openecomp.groups.heat.HeatStack
781        - tosca.groups.Root
782
783 healthStatusExclude:
784    - DE
785    - ES
786    - DMAAP