blob: ee13c4cc55be3179cb86a87b157adc2182ccc746 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
spring:
security:
user:
name: ${REST_USER:acmUser}
password: ${REST_PASSWORD:zb!XztG34}
autoconfigure:
exclude:
- org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
- org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
- org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration
- org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration
server:
port: ${PORT:8084}
error:
path: /error
element:
elementId:
name: ${ELEMENT_ID:onap.policy.clamp.ac.element1}
version: ${ELEMENT_VERSION:1.0.0}
management:
endpoints:
web:
base-path: /
exposure:
include: health, metrics, prometheus
|