-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathoutputs.tf
36 lines (29 loc) · 1.02 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
##############################################################################
# VPC
##############################################################################
output "vpc_name" {
description = "Name of VPC created"
value = module.vpc.vpc_name
}
output "vpc_id" {
description = "ID of VPC created"
value = module.vpc.vpc_id
}
output "vpc_crn" {
description = "CRN of VPC created"
value = module.vpc.vpc_crn
}
##############################################################################
# Public Gateways
##############################################################################
output "public_gateways" {
description = "Map of public gateways by zone"
value = module.vpc.public_gateways
}
##############################################################################
# VPC flow logs
##############################################################################
output "vpc_flow_logs" {
description = "Details of VPC flow logs collector"
value = module.vpc.vpc_flow_logs
}