add option to disable registration with msb
[externalapi/nbi.git] / src / test / resources / application.properties
1 #
2 #     Copyright (c) 2018 Orange
3 #
4 #     Licensed under the Apache License, Version 2.0 (the "License");
5 #     you may not use this file except in compliance with the License.
6 #     You may obtain a copy of the License at
7 #
8 #         http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #     Unless required by applicable law or agreed to in writing, software
11 #     distributed under the License is distributed on an "AS IS" BASIS,
12 #     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #     See the License for the specific language governing permissions and
14 #     limitations under the License.
15 #
16
17 # SERVER
18 server.contextPath=/nbi/api/v1
19 server.port = 8080
20
21 # LOGGING
22 logging.level.org.onap.nbi=DEBUG
23
24 # ONAP
25 onap.lcpCloudRegionId=RegionOne
26 onap.tenantId=31047205ce114b60833b23e400d6a535
27 onap.cloudOwner=CloudOwner
28
29 # NBI
30 nbi.url=http://127.0.0.1:8080/nbi/api/v1
31 nbi.callForVNF=false
32
33 # SDC
34 sdc.host=http://127.0.0.1:8091
35 sdc.header.ecompInstanceId=Rene
36 sdc.header.authorization=Basic YWFpOktwOGJKNFNYc3pNMFdYbGhhazNlSGxjc2UyZ0F3ODR2YW9HR21KdlV5MlU=
37
38 # AAI
39 aai.host=http://127.0.0.1:8091
40 aai.header.authorization=Basic QUFJOkFBSQ==
41 aai.api.id=AAI
42 aai.header.transaction.id=808b54e3-e563-4144-a1b9-e24e2ed93d4f
43
44 # SO
45 so.host=http://127.0.0.1:8091
46 so.header.authorization=
47 so.api.id=SO
48 so.owning.entity.id=6b5b6b70-4e9a-4f6f-8b7b-cbd7cf990c6e
49 so.owning.entity.name=OE-generic
50 so.project.name=Project-generic
51
52 # MSB
53 msb.enabled=false
54 msb.discovery.host=msb_discovery
55 msb.discovery.port=10081
56 msb.service.host=
57 msb.service.port=${server.port}
58 msb.service.name=nbi
59 msb.service.version=v1
60 msb.service.url=${server.contextPath}
61 msb.service.custom_path=
62 msb.service.protocol=REST
63 msb.service.visual_range=1
64 msb.service.enable_ssl=false
65
66 # H2
67 spring.datasource.url=jdbc:h2:mem:~/db;DB_CLOSE_ON_EXIT=false
68 spring.datasource.username=sa
69 spring.datasource.password=
70 spring.datasource.driver-class-name=org.h2.Driver
71 spring.h2.console.enabled=true
72 spring.h2.console.path=/h2-console