Fixes in LCM
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / test / resources / application.properties
1 ###############################################################################
2 # Copyright 2016, Nokia Corporation
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 server.error.whitelabel.enabled=false
17 ###############################################################################
18 # Beginning of mandatory properties                                           #
19 ###############################################################################
20 # The TCP port of the server
21 server.port=8089
22 # the base path of the server
23 server.context-path=
24 # the IP address to which the server binds to
25 server.address=127.0.0.1
26 # the IP address of the server reported to the micro service bus
27 driverMsbExternalIp=127.0.0.1
28 # the IP address of the server reported to VNFM
29 driverVnfmExternalIp=127.0.0.1
30 # the IP address of the message bus
31 messageBusIp=127.0.0.1
32 # the TCP port of the message bus
33 messageBusPort=8089
34 # the URL of the CBAM catalog service
35 cbamCatalogUrl=https://127.0.0.1:443/api/catalog/adapter
36 # the URL of the CBAM LCN service
37 cbamLcnUrl=https://127.0.0.0.1:443/vnfm/lcn/v3
38 # the URL of the CBAM authentication service
39 cbamKeyCloakBaseUrl=https://127.0.0.0.1:443/auth
40 # skip hostname verification during SSL on CBAM LCN, LCM and authorization interface
41 skipHostnameVerification=true
42 # skip certificate verification during SSL on CBAM LCN, LCM and authorization interface
43 skipCertificateVerification=true
44 # the collection of trusted certificates for SSL on CBAM LCN, LCM and authorization interface
45 # in PEM format encoded in BASE64 to a single line
46 trustedCertificates=
47 # the username to be used for requesting a token on CBAM authorization interface
48 cbamUsername=onap
49 # the password to be used for requesting a token on CBAM authorization interface
50 cbamPassword=myPassword
51 # the identifier of the VNFM in A&AI core system registry
52 vnfmId=53fbba58-464e-4cc4-8d33-aaaf072f0a27
53
54 ###############################################################################
55 # Configuration parameters for direct integration
56 ###############################################################################
57 # skip hostname verification during SSL on CBAM LCN, LCM and authorization interface
58 skipHostnameVerificationForAai=true
59 # skip certificate verification during SSL on CBAM LCN, LCM and authorization interface
60 skipCertificateVerificationForAai=true
61 # the collection of trusted certificates for SSL on CBAM LCN, LCM and authorization interface
62 # in PEM format encoded in BASE64 to a single line
63 trustedCertificatesForAai=
64 #The username to access AAI
65 aaiUsername=AAI
66 #The password to access AAI
67 aaiPassword=AAI
68 #The username to access SDC
69 sdcUsername=SDC
70 #The password to access SDC
71 sdcPassword=SDC
72
73 ###############################################################################
74 # End of mandatory properties for driver                                      #
75 ###############################################################################
76 spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.security.oauth2.OAuth2AutoConfiguration,org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
77 vnfmInfoCacheEvictionInMs=600000
78 ## for logging begin ##
79 com.fasterxml.jackson.core=jackson-databind
80 #logging.file=${catalina.base}/logs/vfcadaptor.log
81 logging.level.org.springframework.web=TRACE
82 logging.level.org.hibernate=OFF
83 ## for logging end ##