-
Notifications
You must be signed in to change notification settings - Fork 19
/
outputs.tf
27 lines (23 loc) · 916 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
# -----------------------------------------------------------------------------
# Output VCN and Subnets
# -----------------------------------------------------------------------------
output "vcn_id" {
description = "VCN ocid"
value = module.vcn-core.vcn_id
}
output "nat_gateway_id" {
description = "NAT Gateway ocid"
value = module.vcn-core.nat_gateway_id
}
output "compartments_map" {
value = local.compartments_map
description = "Map of the compartments ocids"
}
output "subnet_map" {
description = "Subnet list mapped to display name"
value = { for subnet in local.subnet_list : subnet.display_name => subnet.id }
}
output "more_info_url" {
description = "For more information, please see the Cloud Adoption Framework - Technical Implementation"
value = "https://docs.oracle.com/en-us/iaas/Content/cloud-adoption-framework/technology-implementation.htm"
}