generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutputs.tf
33 lines (27 loc) · 971 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 "resource_group_name" {
description = "Resource group name"
value = module.resource_group.resource_group_name
}
output "resource_group_id" {
description = "Resource group ID"
value = module.resource_group.resource_group_id
}
output "crn" {
description = "Event Streams instance crn"
value = module.event_streams.crn
}
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
}