generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutputs.tf
28 lines (23 loc) · 819 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
##############################################################################
# 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
}