generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
33 lines (27 loc) · 822 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
##############################################################################
# Outputs
##############################################################################
output "zone_id" {
value = join("", ibm_cbr_zone.cbr_zone[*].id)
description = "cbr_zone id"
}
output "zone_crn" {
value = join("", ibm_cbr_zone.cbr_zone[*].crn)
description = "cbr_zone crn"
}
output "zone_href" {
value = join("", ibm_cbr_zone.cbr_zone[*].href)
description = "cbr_zone link"
}
output "rule_id" {
value = join("", ibm_cbr_rule.cbr_rule[*].id)
description = "CBR rule id"
}
output "rule_crn" {
value = join("", ibm_cbr_rule.cbr_rule[*].crn)
description = "CBR rule crn"
}
output "rule_href" {
value = join("", ibm_cbr_rule.cbr_rule[*].href)
description = "CBR rule href"
}