-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathoutputs.tf
63 lines (51 loc) · 1.75 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
##############################################################################
# Outputs
##############################################################################
output "hub_vpc_id" {
value = module.hub_vpc.vpc_id
description = "Hub VPC id"
}
output "hub_vpc_crn" {
value = module.hub_vpc.vpc_crn
description = "Hub VPC crn"
}
output "spoke_vpc_id" {
value = module.spoke_vpc.vpc_id
description = "Hub VPC id"
}
output "spoke_vpc_crn" {
value = module.spoke_vpc.vpc_crn
description = "Hub VPC crn"
}
output "transit_gateway_id" {
value = module.tg_gateway_connection.tg_id
description = "The ID of the transit gateway"
}
output "transit_gateway_crn" {
value = module.tg_gateway_connection.tg_crn
description = "The CRN of the transit gateway"
}
output "vpc_connection_ids" {
value = module.tg_gateway_connection.vpc_conn_ids
description = "List of VPC connection IDs."
}
output "custom_resolver_hub_vpc" {
value = module.hub_vpc.custom_resolver_hub
description = "The custom resolver created for the hub vpc."
}
output "dns_endpoint_gateways_by_spoke_vpc_crn" {
value = module.spoke_vpc.dns_endpoint_gateways_by_crn
description = "The list of VPEs that are made available for DNS resolution in the created VPC."
}
output "dns_endpoint_gateways_by_spoke_vpc_id" {
value = module.spoke_vpc.dns_endpoint_gateways_by_id
description = "The list of VPEs that are made available for DNS resolution in the created VPC."
}
output "dns_instance_id" {
description = "The ID of the DNS instance."
value = module.hub_vpc.dns_instance_id
}
output "dns_custom_resolver_id" {
description = "The ID of the DNS Custom Resolver."
value = module.hub_vpc.dns_custom_resolver_id
}