generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
40 lines (33 loc) · 990 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
34
35
36
37
38
39
40
##############################################################################
# Outputs
##############################################################################
output "id" {
description = "Redis instance id"
value = module.icd_redis.id
}
output "version" {
description = "Redis instance version"
value = module.icd_redis.version
}
output "guid" {
description = "Redis instance guid"
value = module.icd_redis.guid
}
output "service_credentials_json" {
description = "Service credentials json map"
value = module.icd_redis.service_credentials_json
sensitive = true
}
output "service_credentials_object" {
description = "Service credentials object"
value = module.icd_redis.service_credentials_object
sensitive = true
}
output "hostname" {
description = "Redis instance hostname"
value = module.icd_redis.hostname
}
output "port" {
description = "Redis instance port"
value = module.icd_redis.port
}