-
Notifications
You must be signed in to change notification settings - Fork 0
/
api-documentation.yml
89 lines (79 loc) · 2.03 KB
/
api-documentation.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
server:
port: 9040
spring:
application:
name: api-documentation
autoconfigure:
exclude:
- org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
- org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
- org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration
- org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration
- org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration
cloud:
stream:
bindings:
documentation-input-channel:
destination: ${kafka.topic.documentation}
consul:
discovery:
tags:
- Microservices REST documentation
- SWAGGER
- Communication with Event Bus
- Spring Boot
swagger:
config:
refreshrate: 5000
logging:
file: log/api-documentation.log
docs:
default-swagger-path: /v2/api-docs
key-swagger-url: swagger_url
ignored-services:
- config-server
- api-documentation
- api-gateway
- admin-panel
- consul
---
spring:
profiles: dev
cloud:
consul:
config:
enable: false
host: localhost
port: 8500
discovery:
instanceId: ${spring.application.name}:${vcap.application.instance_id:${spring.application.instance_id:${random.value}}}
preferIpAddress: false
---
spring:
profiles: test
cloud:
consul:
config:
enable: false
host: localhost
port: 8500
discovery:
instanceId: ${spring.application.name}:${vcap.application.instance_id:${spring.application.instance_id:${random.value}}}
preferIpAddress: false
---
spring:
profiles: prod
cloud:
stream:
kafka:
binder:
brokers:
- kafka:9092
consul:
config:
enable: false
host: localhost
port: 8500
discovery:
instanceId: ${spring.application.name}:${vcap.application.instance_id:${spring.application.instance_id:${random.value}}}
preferIpAddress: false