-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathoutputs.tf
More file actions
48 lines (39 loc) · 1.17 KB
/
outputs.tf
File metadata and controls
48 lines (39 loc) · 1.17 KB
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
45
46
47
48
##############################################################################
# Outputs
##############################################################################
output "vpc_id" {
value = module.slz_vpc.vpc_id
description = "VPC id"
}
output "vpc_crn" {
value = module.slz_vpc.vpc_crn
description = "VPC crn"
}
output "vpc_name" {
value = module.slz_vpc.vpc_name
description = "VPC name property taken from the larger data element"
}
output "vpc_data" {
value = module.slz_vpc.vpc_data
description = "Data of the VPC used in this module, created or existing."
}
output "subnet_ids" {
value = module.slz_vpc.subnet_ids
description = "list of VPC subnet ids created"
}
output "vpc_flow_logs_collector" {
value = module.slz_vpc.vpc_flow_logs
description = "VPC flow logs collector"
}
output "cos_instance_crn" {
value = ibm_resource_instance.cos_instance[0].crn
description = "COS instance crn"
}
output "cos_bucket_name" {
value = ibm_cos_bucket.cos_bucket[0].bucket_name
description = "COS bucket name"
}
output "cidr_blocks" {
value = module.slz_vpc.cidr_blocks
description = "CIDR values"
}