-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathiaf.config
59 lines (37 loc) · 1.7 KB
/
iaf.config
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
#
# IAF environment values
#
# TOPIC: kafka topic to listen to.
# Importantt note: the topic mustt start with 'icp4ba-bai'
# example: TOPIC=icp4ba-bai-CUSTOMER_V1
TOPIC=icp4ba-bai....
# KAFKA_USERNAME: IBM BAI installation kafka user
# example: KAFKA_USERNAME=someKafkaUser
KAFKA_USERNAME=
# KAFKA_PASSWORD: Kafka user password.
# example: KAFKA_PASSWORD=admin
KAFKA_PASSWORD=
# EVENT: location of a JSON file containing the event to send. The event must be conformal to the schema used to identify the event content. Must start with @.
# example: EVENT=/Users/someUser/someResources/avro-sample-event.json
EVENT=src/test/resources/iaf/generic-event.json
# SCHEMA: location of the schema file (.avsc) used to ser/deserialize the event yo be sent
# exemple: SCHEMA=/some/path/to/any.avsc
SCHEMA=src/test/resources/iaf/generic-v1.0.0.avsc
# MANAGEMENT_URL: The Business Automation Insight (BAI) management service base URL.
# example: MANAGEMENT_URL=https://localhost:6898
MANAGEMENT_URL=
# MANAGEMENT_USERNAME: The management service authorized user name.
# example: MANAGEMENT_USERNAME=admin
MANAGEMENT_USERNAME=
# MANAGEMENT_PASSWORD: The management service authorized user password.
# example: MANAGEMENT_PASSWORD=blah-blah-blah
MANAGEMENT_PASSWORD=
# REGISTRY_URL: URL of the BAI avro registry endpoint
# example: REGISTRY_URL=https://localhost:8084
REGISTRY_URL=
#
# IAF producer and consumer common values
#
# KAFKA_SECURITY_PROPERTIES: The location of a java properties file containing all of the security information needed to communicate with Kafka
# example: KAFKA_SECURITY_PROPERTIES=/Users/someUser/someResources/KafkaSecurity.properties
KAFKA_SECURITY_PROPERTIES=src/test/resources/iaf/kafkaProducer.properties