generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
35 lines (29 loc) · 1.03 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
##############################################################################
# Outputs
##############################################################################
output "event_notification_instance_name" {
description = "The name of the Event Notifications instance."
value = ibm_resource_instance.en_instance.name
}
output "crn" {
description = "The Event Notifications instance CRN."
value = ibm_resource_instance.en_instance.crn
}
output "account_id" {
description = "The Event Notifications account ID."
value = local.account_id
}
output "guid" {
description = "The globally unique identifier of the Event Notifications instance."
value = ibm_resource_instance.en_instance.guid
}
output "service_credentials_json" {
description = "The service credentials JSON map."
value = local.service_credentials_json
sensitive = true
}
output "service_credentials_object" {
description = "The service credentials object."
value = local.service_credentials_object
sensitive = true
}