Add encryption for passwords
[clamp.git] / src / test / resources / https / https-test.properties
1 ###
2 # ============LICENSE_START=======================================================
3 # ONAP CLAMP
4 # ================================================================================
5 # Copyright (C) 2017 AT&T Intellectual Property. All rights
6 #                             reserved.
7 # ================================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 # http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 # ============LICENSE_END============================================
20 # ===================================================================
21 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 ###
23
24 info.build.artifact=@project.artifactId@
25 info.build.name=@project.name@
26 info.build.description=@project.description@
27 info.build.version=@project.version@
28
29 ### Set the port for HTTP or HTTPS protocol (Controlled by Spring framework, only one at a time).
30 ### (See below for the parameter 'server.http.port' if you want to have both enabled) 
31 ### To have only HTTP, keep the lines server.ssl.* commented
32 ### To have only HTTPS enabled, uncomment the server.ssl.* lines and specify a right keystore location
33 server.port=10443
34 ### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port') 
35 server.ssl.key-store=classpath:https/keystore-test.jks
36 server.ssl.key-store-password=testpass
37 server.ssl.key-password=testpass
38
39 ### In order to be user friendly when HTTPS is enabled, 
40 ### you can add another HTTP port that will be automatically redirected to HTTPS
41 ### by enabling this parameter (server.http.port) and set it to another port (80 or 8080, 8090, etc ...)
42 server.http-to-https-redirection.port=10080
43
44 ### HTTP Example:
45 ###--------------
46 ### server.port=8080
47
48 ### HTTPS Example:
49 ### --------------
50 ### server.port=8443
51 ### server.ssl.key-store=file:/tmp/mykey.jks
52 ### server.ssl.key-store-password=mypass
53 ### server.ssl.key-password=mypass
54
55 ### HTTP (Redirected to HTTPS) and HTTPS Example:
56 ### --------------------------------------------
57 ### server.port=8443           <-- The HTTPS port
58 ### server.ssl.key-store=file:/tmp/mykey.jks
59 ### server.ssl.key-store-password=mypass
60 ### server.ssl.key-password=mypass
61 ### server.http-to-https-redirection.port=8090  <-- The HTTP port
62
63 server.contextPath=/
64 #Modified engine-rest applicationpath
65 spring.jersey.application-path=/engine-rest
66 spring.profiles.active=clamp-default,clamp-spring-authentication
67
68 #The max number of active threads in this pool
69 server.tomcat.max-threads=200
70 #The minimum number of threads always kept alive
71 server.tomcat.min-Spare-Threads=25
72 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
73 server.tomcat.max-idle-time=60000
74
75
76 #Add this properties only if you want to change the URL, AJSC Framework interceptors will intercept
77 #com.att.ajsc.common.interceptors.PreInterceptor.url=/**
78 #com.att.ajsc.common.interceptors.PostInterceptor.url=/**
79
80 #Servlet context parameters
81 server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
82
83 camel.springboot.consumer-template-cache-size=1000
84 camel.springboot.producer-template-cache-size=1000
85 camel.springboot.jmx-enabled=true
86 camel.defaultthreadpool.poolsize=10
87 camel.defaultthreadpool.maxpoolsize=20
88 camel.defaultthreadpool.maxqueuesize=1000
89 camel.defaultthreadpool.keepaliveTime=60
90 camel.defaultthreadpool.rejectpolicy=CallerRuns
91
92 kubernetes.namespace=com-att-ajsc
93
94 #server.port=0
95 #Camunda Process Engine DataSource connection Details
96 spring.datasource.camunda.driverClassName=org.mariadb.jdbc.Driver
97 spring.datasource.camunda.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/camundabpm?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647\r
98 spring.datasource.camunda.username=camunda
99 spring.datasource.camunda.password=D75B89195FD913848EA11416F755390E\r
100 spring.datasource.camunda.validationQuery=SELECT 1
101 spring.datasource.camunda.validationQueryTimeout=20000
102 spring.datasource.camunda.validationInterval=30000
103 spring.datasource.camunda.testWhileIdle = true
104 spring.datasource.camunda.minIdle = 0
105 spring.datasource.camunda.initialSize=0
106 # Automatically test whether a connection provided is good or not
107 spring.datasource.camunda.testOnBorrow=true
108 spring.datasource.camunda.ignoreExceptionOnPreLoad=true
109
110
111 #Camunda application properties
112 #Camunda history level
113 camunda.bpm.history-level=auto
114 camunda.bpm.database.type=mariadb
115 camunda.bpm.database.schema-update=false
116
117 #clds datasource connection details
118 spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
119 spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647\r
120 spring.datasource.cldsdb.username=clds
121 spring.datasource.cldsdb.password=035F8819FEBB754F3C99ECCCC1259850\r
122 spring.datasource.cldsdb.validationQuery=SELECT 1
123 spring.datasource.cldsdb.validationQueryTimeout=20000
124 spring.datasource.cldsdb.validationInterval=30000
125 spring.datasource.cldsdb.testWhileIdle = true
126 spring.datasource.cldsdb.minIdle = 0
127 spring.datasource.cldsdb.initialSize=0
128 # Automatically test whether a connection provided is good or not
129 spring.datasource.cldsdb.testOnBorrow=true
130 spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
131
132 #Async Executor default Parameters
133 async.core.pool.size=10
134 async.max.pool.size=20
135 async.queue.capacity=500
136
137 #GRM Edge endpoint details
138 service.name=ajsc6camundademo
139 service.version=1.0.0.0
140 routeoffer=TEST
141 #Update with your application name
142 application.name=AJSC6CAMUNDA
143
144 org.onap.clamp.config.files.cldsReference=classpath:/clds/clds-reference.properties
145 org.onap.clamp.config.files.cldsPolicyConfig=classpath:/clds/clds-policy-config.properties
146 org.onap.clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
147 org.onap.clamp.config.files.globalClds=classpath:/clds/globalClds.properties
148 org.onap.clamp.encryption.aes.key=aa3871669d893c7fb8abbcda31b88b4f
149
150 #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
151 CLDS_PERMISSION_TYPE_CL=permission-type-cl
152 CLDS_PERMISSION_TYPE_CL_MANAGE=permission-type-cl-manage
153 CLDS_PERMISSION_TYPE_CL_EVENT=permission-type-cl-event
154 CLDS_PERMISSION_TYPE_FILTER_VF=permission-type-filter-vf
155 CLDS_PERMISSION_TYPE_TEMPLATE=permission-type-template
156 #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
157 CLDS_PERMISSION_INSTANCE=dev