generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
40 lines (33 loc) · 1.14 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
##############################################################################
# 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 "event_notification_instance_name" {
description = "Event Notification name"
value = module.event_notification.event_notification_instance_name
}
output "crn" {
description = "Event notification instance crn"
value = module.event_notification.crn
}
output "guid" {
description = "Event Notification guid"
value = module.event_notification.guid
}
output "service_credentials_json" {
description = "Service credentials json map"
value = module.event_notification.service_credentials_json
sensitive = true
}
output "service_credentials_object" {
description = "Service credentials json object"
value = module.event_notification.service_credentials_object
sensitive = true
}