-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
33 lines (27 loc) · 948 Bytes
/
outputs.tf
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
##############################################################################
# Outputs
##############################################################################
output "crn" {
description = "Event Streams instance crn"
value = module.event_streams.crn
}
output "id" {
description = "Event Streams instance crn"
value = module.event_streams.id
}
output "guid" {
description = "Event Streams instance guid"
value = module.event_streams.guid
}
output "kafka_brokers_sasl" {
description = "(Array of Strings) Kafka brokers use for interacting with Kafka native API"
value = module.event_streams.kafka_brokers_sasl
}
output "kafka_http_url" {
description = "The API endpoint to interact with Event Streams REST API"
value = module.event_streams.kafka_http_url
}
output "kafka_broker_version" {
description = "The Kafka version"
value = module.event_streams.kafka_broker_version
}