generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
44 lines (37 loc) · 1.17 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
##############################################################################
# Outputs
##############################################################################
output "id" {
description = "Enterprise DB instance id"
value = module.enterprise_db.id
}
output "guid" {
description = "Enterprise DB instance guid"
value = module.enterprise_db.guid
}
output "version" {
description = "Enterprise DB instance version"
value = module.enterprise_db.version
}
output "service_credentials_json" {
description = "Service credentials json map"
value = module.enterprise_db.service_credentials_json
sensitive = true
}
output "service_credentials_object" {
description = "Service credentials object"
value = module.enterprise_db.service_credentials_object
sensitive = true
}
output "cbr_rule_ids" {
description = "CBR rule ids created to restrict Enterprise DB"
value = module.enterprise_db.cbr_rule_ids
}
output "hostname" {
description = "EnterpriseDB instance hostname"
value = module.enterprise_db.hostname
}
output "port" {
description = "EnterpriseDB instance port"
value = module.enterprise_db.port
}