-
Notifications
You must be signed in to change notification settings - Fork 0
/
testbed-gateway.yml
57 lines (51 loc) · 1.24 KB
/
testbed-gateway.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
spring:
cloud:
config:
auto-refresh: true
refresh-interval: 60
gateway:
routes:
- id: httpbin
uri: http://httpbin.org:80
predicates:
- Path=/get
- id: randomuser-test
uri: https://app-service-poc-app-service.private.azuremicroservices.io
predicates:
- Path=/randomuser
- id: vault-access-test
uri: https://app-service-poc-app-service.private.azuremicroservices.io
predicates:
- Path=/vault
- id: config-access-test
uri: https://app-service-poc-app-service.private.azuremicroservices.io
predicates:
- Path=/testproperty
management:
endpoints:
enabled-by-default: true
web:
exposure:
include: refresh
---
spring:
config:
activate:
on-profile: dev
logging:
level:
root: info
org.springframework.web: error
org.springframework.security: info
org.springframework.cloud.netflix: error
org.springframework.cloud.config: error
com.netflix.discovery: error
org.springframework.cloud.endpoint: error
management:
endpoints:
enabled-by-default: true
web:
exposure:
include: "*"
exclude: "env,beans"
---