generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutputs.tf
55 lines (45 loc) · 1.55 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
##############################################################################
# Outputs
##############################################################################
output "crn" {
description = "Event Streams instance crn"
value = module.event_streams.crn
}
output "id" {
description = "Event Streams instance id"
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
}
output "service_credentials_json" {
description = "Service credentials json map"
value = module.event_streams.service_credentials_json
sensitive = true
}
output "service_credentials_object" {
description = "Service credentials object"
value = module.event_streams.service_credentials_object
sensitive = true
}
output "mirroring_config_id" {
description = "The ID of the mirroring config in CRN format"
value = module.event_streams.mirroring_config_id
}
output "mirroring_topic_patterns" {
description = "Mirroring topic patterns"
value = module.event_streams.mirroring_topic_patterns
}