generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
43 lines (35 loc) · 1012 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
41
42
43
##############################################################################
# Outputs
##############################################################################
output "vpc_id" {
value = resource.ibm_is_vpc.example_vpc.id
description = "VPC id"
}
output "vpc_crn" {
value = resource.ibm_is_vpc.example_vpc.crn
description = "VPC crn"
}
output "account_id" {
description = "account id"
value = data.ibm_iam_account_settings.iam_account_settings.id
}
output "zone_name" {
value = module.ibm_cbr_zone.zone_names
description = "cbr_zone name"
}
output "zone_description" {
value = module.ibm_cbr_zone.zone_description
description = "cbr_zone description"
}
output "zone_id" {
value = module.ibm_cbr_zone.zone_id
description = "cbr_zone id"
}
output "zone_crn" {
value = module.ibm_cbr_zone.zone_crn
description = "cbr_zone crn"
}
output "zone_href" {
value = module.ibm_cbr_zone.zone_href
description = "cbr_zone href"
}