Remove legacy certificate handling
[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: 12.0
27 minToscaConformanceLevel: 3.0
28
29 # access restriction
30 authCookie:
31   securityKey: "AGLDdG4D04BKm2IxIWEr8o=="
32   maxSessionTimeOut: 24*60*60*1000
33   sessionIdleTimeOut: 2*60*60*1000
34   cookieName: "AuthenticationCookie"
35   path: /
36   domain: ""
37   isHttpOnly: true
38   # redirect variable name from portal.properties file
39   redirectURL: "ecomp_redirect_url"
40   excludedUrls: ['/config', '/configmgr', '/kibanaProxy', '/healthcheck', '/v1/catalog', '/v1/catalog/archive', '/v1/followed', '/v1/catalog/upload.*', '/v1/consumers', '/v1/screen', '/v1/catalogUpdateTimea', '/v1/user.*']
41
42 # These values are necessary for running upgrade migration 1710.0 process
43 enableAutoHealing: false
44 appVersion: 1.1.0
45 artifactGeneratorConfig: Artifact-Generator.properties
46 resourcesForUpgrade:
47  8.0:
48   - org.openecomp.resource.cp.extCP
49   - tosca.nodes.network.Network
50   - tosca.nodes.network.Port
51   - org.openecomp.resource.cp.nodes.network.SubInterface
52 skipUpgradeFailedVfs: true
53 skipUpgradeVSPs: true
54 autoHealingOwner: jh0003
55 supportAllottedResourcesAndProxy: true
56 deleteLockTimeoutInSeconds: 60
57 maxDeleteComponents: 10
58
59 janusGraphCfgFile: /home/vagrant/catalog-be/config/catalog-be/janusgraph.properties
60 janusGraphInMemoryGraph: false
61 janusGraphLockTimeout: 1800
62
63 # The interval to try and reconnect to janusGraph DB when it is down during ASDC startup:
64 janusGraphReconnectIntervalInSeconds: 3
65
66 # The read timeout towards Janus Graph DB when health check is invoked:
67 janusGraphHealthCheckReadTimeout: 1
68
69 uebHealthCheckReconnectIntervalInSeconds: 15
70 uebHealthCheckReadTimeout: 4
71
72 # Protocols
73 protocols:
74    - http
75    - https
76
77 # Default imports
78 defaultImports:
79    - nodes:
80         file: nodes.yml
81    - datatypes:
82         file: data.yml
83    - capabilities:
84         file: capabilities.yml
85    - relationships:
86         file: relationships.yml
87    - groups:
88         file: groups.yml
89    - policies:
90         file: policies.yml
91    - annotations:
92         file: annotations.yml
93
94 # Global CSAR Import Files
95 globalCsarImports:
96   - annotations.yml
97   - artifacts.yml
98   - capabilities.yml
99   - data.yml
100   - groups.yml
101   - interfaces.yml
102   - nodes.yml
103   - policies.yml
104   - relationships.yml
105
106 # Users
107 users:
108     tom: passwd
109     bob: passwd
110
111 neo4j:
112     host: neo4jhost
113     port: 7474
114     user: neo4j
115     password: "12345"
116
117 basicAuth:
118   enabled: false
119   userName: "testName"
120   userPass: "testPass"
121   excludedUrls: ""
122
123 cassandraConfig:
124     cassandraHosts: [192.168.33.10]
125     cassandraPort: 9042
126     localDataCenter: DC-sdc-iltlv650
127     reconnectTimeout : 30000
128     authenticate: true
129     username: asdc_user
130     password: Aa1234%^!
131     ssl: true
132     maxWaitSeconds: 120
133     keySpaces:
134         - { name: dox, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
135         - { name: sdcaudit, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
136         - { name: sdcartifact, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
137         - { name: sdccomponent, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
138         - { name: sdcrepository, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
139
140 licenseTypes:
141    - User
142    - Installation
143    - CPU
144
145 #Deployment artifacts placeHolder
146 resourceTypes: &allResourceTypes
147   - VFC
148   - CP
149   - VL
150   - VF
151   - CR
152   - VFCMT
153   - Abstract
154   - CVFC
155
156 # validForResourceTypes usage
157 #     validForResourceTypes:
158 #        - VF
159 #        - VL
160 deploymentResourceArtifacts:
161 #  heat:
162 #      displayName: "Base HEAT Template"
163 #      type: HEAT
164 #      validForResourceTypes: *allResourceTypes
165 #  heatVol:
166 #      displayName: "Volume HEAT Template"
167 #      type: HEAT_VOL
168 #      validForResourceTypes: *allResourceTypes
169 #  heatNet:
170 #      displayName: "Network HEAT Template"
171 #      type: HEAT_NET
172 #      validForResourceTypes: *allResourceTypes
173
174 deploymentResourceInstanceArtifacts:
175   heatEnv:
176       displayName: "HEAT ENV"
177       type: HEAT_ENV
178       description: "Auto-generated HEAT Environment deployment artifact"
179       fileExtension: "env"
180   VfHeatEnv:
181       displayName: "VF HEAT ENV"
182       type: HEAT_ENV
183       description: "VF Auto-generated HEAT Environment deployment artifact"
184       fileExtension: "env"
185
186 #tosca artifacts placeholders
187 toscaArtifacts:
188   assetToscaTemplate:
189       artifactName: -template.yml
190       displayName: Tosca Template
191       type: TOSCA_TEMPLATE
192       description: TOSCA representation of the asset
193   assetToscaCsar:
194       artifactName: -csar.csar
195       displayName: Tosca Model
196       type: TOSCA_CSAR
197       description: TOSCA definition package of the asset
198
199
200 #Informational artifacts placeHolder
201 excludeResourceCategory:
202   - Generic
203 excludeResourceType:
204   - PNF
205   - CR
206 informationalResourceArtifacts:
207   features:
208       displayName: Features
209       type: OTHER
210   capacity:
211       displayName: Capacity
212       type: OTHER
213   vendorTestResult:
214       displayName: Vendor Test Result
215       type: OTHER
216   testScripts:
217       displayName: Test Scripts
218       type: OTHER
219   CloudQuestionnaire:
220       displayName: Cloud Questionnaire (completed)
221       type: OTHER
222   HEATTemplateFromVendor:
223       displayName: HEAT Template from Vendor
224       type: HEAT
225   resourceSecurityTemplate:
226       displayName: Resource Security Template
227       type: OTHER
228
229 excludeServiceCategory:
230
231 informationalServiceArtifacts:
232   serviceArtifactPlan:
233       displayName: Service Artifact Plan
234       type: OTHER
235   summaryOfImpactsToECOMPElements:
236       displayName: Summary of impacts to ECOMP elements,OSSs, BSSs
237       type: OTHER
238   automationCompositionFunctions:
239       displayName: Automation Composition Functions
240       type: OTHER
241   dimensioningInfo:
242       displayName: Dimensioning Info
243       type: OTHER
244   affinityRules:
245       displayName: Affinity Rules
246       type: OTHER
247   operationalPolicies:
248       displayName: Operational Policies
249       type: OTHER
250   serviceSpecificPolicies:
251       displayName: Service-specific Policies
252       type: OTHER
253   engineeringRules:
254       displayName: Engineering Rules (ERD)
255       type: OTHER
256   distributionInstructions:
257       displayName: Distribution Instructions
258       type: OTHER
259   certificationTestResults:
260       displayName: TD Certification Test Results
261       type: OTHER
262   deploymentVotingRecord:
263       displayName: Deployment Voting Record
264       type: OTHER
265   serviceQuestionnaire:
266       displayName: Service Questionnaire
267       type: OTHER
268   serviceSecurityTemplate:
269       displayName: Service Security Template
270       type: OTHER
271
272 serviceApiArtifacts:
273   configuration:
274       displayName: Configuration
275       type: OTHER
276   instantiation:
277       displayName: Instantiation
278       type: OTHER
279   monitoring:
280       displayName: Monitoring
281       type: OTHER
282   reporting:
283       displayName: Reporting
284       type: OTHER
285   logging:
286       displayName: Logging
287       type: OTHER
288   testing:
289       displayName: Testing
290       type: OTHER
291
292 additionalInformationMaxNumberOfKeys: 50
293
294 systemMonitoring:
295     enabled: false
296     isProxy: false
297     probeIntervalInSeconds: 15
298
299 heatArtifactDeploymentTimeout:
300   defaultMinutes: 30
301   minMinutes: 1
302   maxMinutes: 120
303
304 serviceDeploymentArtifacts:
305     CONTROLLER_BLUEPRINT_ARCHIVE:
306         acceptedTypes:
307             - zip
308     HELM:
309         acceptedTypes:
310             - tgz
311     YANG_XML:
312         acceptedTypes:
313             - xml
314     VNF_CATALOG:
315         acceptedTypes:
316             - xml
317     MODEL_INVENTORY_PROFILE:
318         acceptedTypes:
319             - xml
320     MODEL_QUERY_SPEC:
321         acceptedTypes:
322             - xml
323     UCPE_LAYER_2_CONFIGURATION:
324         acceptedTypes:
325             - xml
326
327 #AAI Artifacts
328     AAI_SERVICE_MODEL:
329         acceptedTypes:
330             - xml
331     AAI_VF_MODULE_MODEL:
332         acceptedTypes:
333             - xml
334     AAI_VF_INSTANCE_MODEL:
335         acceptedTypes:
336             - xml
337     CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT:
338         acceptedTypes:
339             - zip
340             - tgz
341             - csar
342     OTHER:
343         acceptedTypes:
344
345 resourceDeploymentArtifacts:
346     HEAT:
347         acceptedTypes:
348             - yaml
349             - yml
350         validForResourceTypes: *allResourceTypes
351     HEAT_VOL:
352         acceptedTypes:
353             - yaml
354             - yml
355         validForResourceTypes: *allResourceTypes
356     HEAT_NET:
357         acceptedTypes:
358             - yaml
359             - yml
360         validForResourceTypes: *allResourceTypes
361     HEAT_NESTED:
362         acceptedTypes:
363             - yaml
364             - yml
365         validForResourceTypes: *allResourceTypes
366     HEAT_ARTIFACT:
367         acceptedTypes:
368         validForResourceTypes: *allResourceTypes
369     CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT:
370         acceptedTypes:
371             - zip
372         validForResourceTypes: *allResourceTypes
373     YANG_XML:
374         acceptedTypes:
375             - xml
376         validForResourceTypes: *allResourceTypes
377     VNF_CATALOG:
378         acceptedTypes:
379             - xml
380         validForResourceTypes: *allResourceTypes
381     VF_LICENSE:
382         acceptedTypes:
383             - xml
384         validForResourceTypes: *allResourceTypes
385     VENDOR_LICENSE:
386         acceptedTypes:
387             - xml
388         validForResourceTypes: *allResourceTypes
389     MODEL_INVENTORY_PROFILE:
390         acceptedTypes:
391             - xml
392         validForResourceTypes: *allResourceTypes
393     MODEL_QUERY_SPEC:
394         acceptedTypes:
395             - xml
396         validForResourceTypes: *allResourceTypes
397     LIFECYCLE_OPERATIONS:
398         acceptedTypes:
399             - yaml
400             - yml
401         validForResourceTypes:
402             - VF
403             - VFC
404     VES_EVENTS:
405         acceptedTypes:
406             - yaml
407             - yml
408         validForResourceTypes:
409             - VFC
410             - CP
411             - VL
412             - VF
413             - CR
414             - VFCMT
415             - Abstract
416             - CVFC
417             - PNF
418     PERFORMANCE_COUNTER:
419         acceptedTypes:
420             - csv
421         validForResourceTypes: *allResourceTypes
422     APPC_CONFIG:
423         acceptedTypes:
424         validForResourceTypes:
425             - VF
426     DCAE_TOSCA:
427         acceptedTypes:
428             - yml
429             - yaml
430         validForResourceTypes:
431             - VF
432             - VFCMT
433     DCAE_JSON:
434         acceptedTypes:
435             - json
436         validForResourceTypes:
437             - VF
438             - VFCMT
439     DCAE_POLICY:
440         acceptedTypes:
441             - emf
442         validForResourceTypes:
443             - VF
444             - VFCMT
445     DCAE_DOC:
446         acceptedTypes:
447         validForResourceTypes:
448             - VF
449             - VFCMT
450     DCAE_EVENT:
451         acceptedTypes:
452         validForResourceTypes:
453             - VF
454             - VFCMT
455     AAI_VF_MODEL:
456         acceptedTypes:
457             - xml
458         validForResourceTypes:
459             - VF
460     AAI_VF_MODULE_MODEL:
461         acceptedTypes:
462             - xml
463         validForResourceTypes:
464             - VF
465     OTHER:
466         acceptedTypes:
467         validForResourceTypes:
468           - VFC
469           - CP
470           - VL
471           - VF
472           - VFCMT
473           - Abstract
474           - CVFC
475           - PNF
476     SNMP_POLL:
477         acceptedTypes:
478         validForResourceTypes: *allResourceTypes
479     SNMP_TRAP:
480         acceptedTypes:
481         validForResourceTypes: *allResourceTypes
482     PM_DICTIONARY:
483         acceptedTypes:
484             - yaml
485             - yml
486         validForResourceTypes:
487             - VF
488             - PNF
489     YANG_MODULE:
490         acceptedTypes:
491             - yang
492         validForResourceTypes:
493             - VF
494             - PNF
495     ANSIBLE_PLAYBOOK:
496         acceptedTypes:
497             - yaml
498             - yml
499         validForResourceTypes:
500             - VF
501             - PNF
502     ONBOARDED_PACKAGE:
503         acceptedTypes:
504             - csar
505         validForResourceTypes:
506             - VF
507             - PNF
508     HELM:
509         acceptedTypes:
510             - tgz
511         validForResourceTypes: *allResourceTypes
512     CONTROLLER_BLUEPRINT_ARCHIVE:
513         acceptedTypes:
514             - zip
515         validForResourceTypes:
516             - VF
517             - PNF
518
519
520 resourceInstanceDeploymentArtifacts:
521     HEAT_ENV:
522         acceptedTypes:
523             - env
524     VF_MODULES_METADATA:
525         acceptedTypes:
526             - json
527     VES_EVENTS:
528         acceptedTypes:
529             - yaml
530             - yml
531     PERFORMANCE_COUNTER:
532         acceptedTypes:
533             - csv
534     DCAE_INVENTORY_TOSCA:
535         acceptedTypes:
536             - yml
537             - yaml
538     DCAE_INVENTORY_JSON:
539         acceptedTypes:
540             - json
541     DCAE_INVENTORY_POLICY:
542       acceptedTypes:
543             - emf
544     DCAE_INVENTORY_DOC:
545       acceptedTypes:
546     DCAE_INVENTORY_BLUEPRINT:
547       acceptedTypes:
548     DCAE_INVENTORY_EVENT:
549       acceptedTypes:
550     SNMP_POLL:
551         acceptedTypes:
552         validForResourceTypes: *allResourceTypes
553     SNMP_TRAP:
554         acceptedTypes:
555         validForResourceTypes: *allResourceTypes
556
557 resourceInformationalArtifacts:
558     CHEF:
559         acceptedTypes:
560         validForResourceTypes: *allResourceTypes
561     PUPPET:
562         acceptedTypes:
563         validForResourceTypes: *allResourceTypes
564     SHELL:
565         acceptedTypes:
566         validForResourceTypes: *allResourceTypes
567     YANG:
568         acceptedTypes:
569         validForResourceTypes: *allResourceTypes
570     YANG_XML:
571         acceptedTypes:
572         validForResourceTypes: *allResourceTypes
573     HEAT:
574         acceptedTypes:
575         validForResourceTypes: *allResourceTypes
576     BPEL:
577         acceptedTypes:
578         validForResourceTypes: *allResourceTypes
579     DG_XML:
580         acceptedTypes:
581         validForResourceTypes: *allResourceTypes
582     MURANO_PKG:
583         acceptedTypes:
584         validForResourceTypes: *allResourceTypes
585     OTHER:
586         acceptedTypes:
587         validForResourceTypes:
588             - VFC
589             - CVFC
590             - CP
591             - VL
592             - VF
593             - CR
594             - VFCMT
595             - Abstract
596             - PNF
597     PNF_SW_INFORMATION:
598         acceptedTypes:
599             - yml
600             - yaml
601         validForResourceTypes:
602             - PNF
603     SNMP_POLL:
604         acceptedTypes:
605         validForResourceTypes: *allResourceTypes
606     SNMP_TRAP:
607         acceptedTypes:
608         validForResourceTypes: *allResourceTypes
609     GUIDE:
610         acceptedTypes:
611         validForResourceTypes:
612             - VF
613             - VFC
614             - CVFC
615
616 unLoggedUrls:
617    - /sdc2/rest/healthCheck
618
619 cleanComponentsConfiguration:
620     cleanIntervalInMinutes: 1440
621     componentsToClean:
622        - Resource
623        - Service
624
625 artifactsIndex: resources
626
627 heatEnvArtifactHeader: ""
628 heatEnvArtifactFooter: ""
629
630 onboarding:
631     protocol: http
632     host: localhost
633     port: 8080
634     downloadCsarUri: "/onboarding-api/v1.0/vendor-software-products/packages"
635     healthCheckUri: "/onboarding-api/v1.0/healthcheck"
636
637 dcae:
638     protocol: http
639     host: 127.0.0.1
640     port: 8080
641     healthCheckUri: "/dcae/healthCheck"
642
643 ecompPortal:
644     protocol: https
645     host: ecomp-portal-web-tdevn2.mtn23a.ecomp.cci.att.com
646     port: 8443
647     healthCheckUri: "/ecompui/portalApi/healthCheck"
648
649 switchoverDetector:
650     gBeFqdn: AIO-BE.ecomp.idns.cip.com
651     gFeFqdn: AIO-FE.ecomp.idns.cip.com
652     beVip: 0.0.0.0
653     feVip: 0.0.0.0
654     beResolveAttempts: 3
655     feResolveAttempts: 3
656     enabled: false
657     interval: 60
658     changePriorityUser: ecompasdc
659     changePriorityPassword: ecompasdc123
660     publishNetworkUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/update_network?user=root"
661     publishNetworkBody: '{"note":"publish network"}'
662     groups:
663       beSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-BE.ecomp.idns.com?user=root",
664                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"}'}
665       feSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-FE.ecomp.idns.com?user=root",
666                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"}'}
667
668 applicationL1Cache:
669     datatypes:
670         enabled: true
671         firstRunDelay: 10
672         pollIntervalInSec: 60
673
674 applicationL2Cache:
675     enabled: true
676     catalogL1Cache:
677         enabled: true
678         resourcesSizeInCache: 300
679         servicesSizeInCache: 200
680         productsSizeInCache: 100
681     queue:
682         syncIntervalInSecondes: 43200
683         waitOnShutDownInMinutes: 10
684         numberOfCacheWorkers: 4
685
686 toscaValidators:
687     stringMaxLength: 2500
688
689 disableAudit: false
690 consumerBusinessLogic: false
691
692 vfModuleProperties:
693     min_vf_module_instances:
694         forBaseModule: 1
695         forNonBaseModule: 0
696     max_vf_module_instances:
697         forBaseModule: 1
698         forNonBaseModule:
699     initial_count:
700         forBaseModule: 1
701         forNonBaseModule: 0
702     vf_module_type:
703         forBaseModule: Base
704         forNonBaseModule: Expansion
705
706 genericAssetNodeTypes:
707   VFC: org.openecomp.resource.abstract.nodes.VFC
708   CVFC: org.openecomp.resource.abstract.nodes.VFC
709   VF : org.openecomp.resource.abstract.nodes.VF
710   CR : org.openecomp.resource.abstract.nodes.CR
711   PNF: org.openecomp.resource.abstract.nodes.PNF
712   Service: org.openecomp.resource.abstract.nodes.service
713
714 workloadContext: Production
715 environmentContext:
716     defaultValue: General_Revenue-Bearing
717     validValues:
718        - Critical_Revenue-Bearing
719        - Vital_Revenue-Bearing
720        - Essential_Revenue-Bearing
721        - Important_Revenue-Bearing
722        - Needed_Revenue-Bearing
723        - Useful_Revenue-Bearing
724        - General_Revenue-Bearing
725        - Critical_Non-Revenue
726        - Vital_Non-Revenue
727        - Essential_Non-Revenue
728        - Important_Non-Revenue
729        - Needed_Non-Revenue
730        - Useful_Non-Revenue
731        - General_Non-Revenue
732
733 gabConfig:
734   - artifactType: 'VES_EVENTS'
735     pathsandnames:
736       -
737         friendlyName: "Action"
738         path: "event.action[2]"
739         searchable: true
740       -
741         friendlyName: "Comment"
742         path: "event.comment"
743         searchable: true
744       -
745         friendlyName: "Alarm Additional Information"
746         path: "event.structure.faultFields.structure.alarmAdditionalInformation.comment"
747         searchable: true
748   - artifactType: 'PM_DICTIONARY'
749     pathsandnames:
750       -
751         friendlyName: "measType"
752         path: "pmMetaData.pmFields.measType"
753         searchable: true
754       -
755         friendlyName: "measDescription"
756         path: "pmMetaData.pmFields.measDescription"
757         searchable: true
758       -
759         friendlyName: "measCondition"
760         path: "pmMetaData.pmFields.measCondition"
761         searchable: false
762       -
763         friendlyName: "measResultUnits"
764         path: "pmMetaData.pmFields.measResultUnits"
765         searchable: false
766       -
767         friendlyName: "measResultRange"
768         path: "pmMetaData.pmFields.measResultRange"
769         searchable: false
770       -
771         friendlyName: "measObjClass"
772         path: "pmMetaData.pmFields.measObjClass"
773         searchable: true
774       -
775         friendlyName: "measCollectionMethod"
776         path: "pmMetaData.pmFields.measCollectionMethod"
777         searchable: false
778       -
779         friendlyName: "measInfoId"
780         path: "pmMetaData.pmFields.measInfoId"
781         searchable: true
782       -
783         friendlyName: "iMeasInfoId"
784         path: "pmMetaData.pmFields.iMeasInfoId"
785         searchable: false
786
787 #Tenant isolation consumer
788 dmaapConsumerConfiguration:
789     active: true
790     hosts: olsd004.wnsnet.ws.com:3905
791     consumerGroup: asdc
792     consumerId: mama #mama - in Order To Consume Remove This String And Replace It With -> mama
793     timeoutMs: 15000
794     limit: 1
795     pollingInterval: 2
796     topic: com.sdc.23911-SDCforTestDev-v001
797     latitude: 32.109333
798     longitude: 34.855499
799     version: 1.0
800     serviceName: dmaap-v1.dev.dmaap.dt.saat.acsi.com/events
801     environment: TEST
802     partner: BOT_R
803     routeOffer: MR1
804     protocol: https
805     contenttype: application/json
806     dme2TraceOn: true
807     aftEnvironment: AFTUAT
808     aftDme2ConnectionTimeoutMs: 15000
809     aftDme2RoundtripTimeoutMs: 240000
810     aftDme2ReadTimeoutMs: 50000
811     dme2preferredRouterFilePath: DME2preferredRouter.txt
812     timeLimitForNotificationHandleMs: 120000
813     credential:
814         username: sdc@sdc.com
815         password: XyCUPhFx9u70aklYGo6OiA==
816     aftDme2SslEnable: true
817     aftDme2ClientIgnoreSslConfig: false
818     aftDme2ClientSslCertAlias: certman
819
820 #Performence microservice dmaap producer
821 dmaapProducerConfiguration:
822     active: false
823     consumerGroup: asdc
824     consumerId: mama #mama - in Order To Consume Remove This String And Replace It With -> mama
825     timeoutMs: 15000
826     limit: 1
827     pollingInterval: 2
828     topic: com.sdc.23911-SDCforTestDev-v001
829     latitude: 32.109333
830     longitude: 34.855499
831     version: 1.0
832     serviceName: dmaap-v1.dev.dmaap.dt.saat.acsi.com/events
833     environment: TEST
834     partner: BOT_R
835     routeOffer: MR1
836     protocol: http
837     contenttype: application/json
838     dme2TraceOn: true
839     aftEnvironment: AFTUAT
840     aftDme2ConnectionTimeoutMs: 15000
841     aftDme2RoundtripTimeoutMs: 240000
842     aftDme2ReadTimeoutMs: 50000
843     dme2preferredRouterFilePath: DME2preferredRouter.txt
844     timeLimitForNotificationHandleMs: 120000
845     credential:
846         username: sdc@sdc.com
847         password: XyCUPhFx9u70aklYGo6OiA==
848         aftDme2SslEnable: true
849     aftDme2ClientIgnoreSslConfig: false
850     aftDme2ClientSslCertAlias: certman
851
852
853
854 dmeConfiguration:
855     lookupUriFormat: "http://DME2RESOLVE/service=%s/version=1.0.0/envContext=%s/routeOffer=DEFAULT"
856
857 excludedPolicyTypesMapping:
858    # VF:
859     #  - a.b.c
860     #  - c.d.e
861     #CR:
862     #  - x.y.z
863
864 excludedGroupTypesMapping:
865     CR:
866        - org.openecomp.groups.VfModule
867        - org.openecomp.groups.heat.HeatStack
868        - org.openecomp.groups.Group
869        - tosca.groups.Root
870     PNF:
871        - org.openecomp.groups.VfModule
872        - org.openecomp.groups.heat.HeatStack
873        - org.openecomp.groups.Group
874        - tosca.groups.Root
875     VF:
876        - org.openecomp.groups.VfModule
877        - org.openecomp.groups.heat.HeatStack
878        - org.openecomp.groups.Group
879        - tosca.groups.Root
880     Service:
881        - org.openecomp.groups.VfModule
882        - org.openecomp.groups.heat.HeatStack
883        - org.openecomp.groups.Group
884        - tosca.groups.Root
885
886 healthStatusExclude:
887    - DE
888    - DMAAP
889    - DMAAP_PRODUCER
890    - ECOMP_PORTAL
891
892 # This configuration entry lists all node type names prefix that shall be allowed on SDC.
893 definedResourceNamespace:
894   - org.openecomp.resource.
895
896 # This configuration entry lists all Directives values that shall be allowed on SDC.
897 directives:
898   - select
899   - selectable
900   - substitute
901   - substitutable
902
903 #Space separated list of permitted ancestors
904 permittedAncestors: ""
905
906 # Comma separated list of excluded URLs by the DataValidatorFilter
907 dataValidatorFilterExcludedUrls: "/healthCheck,/followed,/authorize"