Fixes in LCM
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / deployment / src / main / 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 # Begining  of mandatory properties                                           #
19 ###############################################################################
20 ###############################################################################
21 # The following section contains the variables set during container creation  #
22 #   - all values must be replaced with non sample data                        #
23 ###############################################################################
24
25 # the IP address of the server reported to the micro service bus
26 driverMsbExternalIp=127.0.0.1
27 # the IP address of the server reported to the VNFM
28 driverVnfmExternalIp=127.0.0.1
29 # the IP address of the message bus
30 messageBusIp=127.0.0.1
31 # the URL of the CBAM catalog service
32 cbamCatalogUrl=https://127.0.0.1:443/api/catalog/adapter/
33 # the URL of the CBAM LCN service
34 cbamLcnUrl=https://127.0.0.1:443/vnfm/lcn/v3/
35 # the URL of the CBAM authentication service
36 cbamKeyCloakBaseUrl=https://127.0.0.1:443/auth/
37 # the username to be used for requesing a token on CBAM authorization interface
38 cbamUsername=kukuUser
39 # the password to be used for requesing a token on CBAM authorization interface
40 cbamPassword=kukuPassword
41 # the identifier of the VNFM in A&AI external system registry
42 vnfmId=5e65fe25-bdad-46dc-bba8-b7878fcee264
43
44 ###############################################################################
45 # The following section holds the default valued that may be chaged 
46 ###############################################################################
47 # The TCP port of the server
48 server.port=8089
49 # the base path of the server
50 server.context-path=
51 # the IP address to which the erver binds to
52 server.address=0.0.0.0
53 # the TCP port of the message bus
54 messageBusPort=80
55 # skip hostname verification during SSL on CBAM LCN, LCM and authorization interface
56 skipHostnameVerification=true
57 # skip certificate verification during SSL on CBAM LCN, LCM and authorization interface
58 skipCertificateVerification=true
59 # the collection of trusted certificates for SSL on CBAM LCN, LCM and authorization interface
60 # in PEM format encoded in BASE64 to a single line
61 trustedCertificates=
62
63 ###############################################################################
64 # Configuration parameters for direct integration
65 ###############################################################################
66 # skip hostname verification during SSL on CBAM LCN, LCM and authorization interface
67 skipHostnameVerificationForAai=true
68 # skip certificate verification during SSL on CBAM LCN, LCM and authorization interface
69 skipCertificateVerificationForAai=true
70 # the collection of trusted certificates for SSL on CBAM LCN, LCM and authorization interface
71 # in PEM format encoded in BASE64 to a single line
72 trustedCertificatesForAai=
73 #The username to access AAI
74 aaiUsername=AAI
75 #The password to access AAI
76 aaiPassword=AAI
77 #The username to access SDC
78 sdcUsername=SDC
79 #The password to access SDC
80 sdcPassword=SDC
81 ###############################################################################
82 # End of mandatory properties for driver                                      #
83 ###############################################################################
84 ipMap=
85 vnfmInfoCacheEvictionInMs=600000
86
87 ## for logging begin ##
88 com.fasterxml.jackson.core=jackson-databind
89 #logging.file=${catalina.base}/logs/vfcadaptor.log
90 logging.level.org.springframework=INFO
91 logging.level.org.hibernate=OFF
92 logging.level.org.springframework.web=DEBUG
93 ## for logging end ##