File tree Expand file tree Collapse file tree 10 files changed +52
-0
lines changed Expand file tree Collapse file tree 10 files changed +52
-0
lines changed Original file line number Diff line number Diff line change @@ -975,6 +975,7 @@ module "cluster_pattern" {
975
975
| <a name =" output_transit_gateway_data " ></a > [ transit\_ gateway\_ data] ( #output\_ transit\_ gateway\_ data ) | Created transit gateway data |
976
976
| <a name =" output_transit_gateway_name " ></a > [ transit\_ gateway\_ name] ( #output\_ transit\_ gateway\_ name ) | Name of created transit gateway |
977
977
| <a name =" output_vpc_data " ></a > [ vpc\_ data] ( #output\_ vpc\_ data ) | List of VPC data |
978
+ | <a name =" output_vpc_dns " ></a > [ vpc\_ dns] ( #output\_ vpc\_ dns ) | List of VPC DNS details for each of the VPCs. |
978
979
| <a name =" output_vpc_names " ></a > [ vpc\_ names] ( #output\_ vpc\_ names ) | List of VPC names |
979
980
| <a name =" output_vpc_resource_list " ></a > [ vpc\_ resource\_ list] ( #output\_ vpc\_ resource\_ list ) | List of VPC with VSI and Cluster deployed on the VPC. |
980
981
| <a name =" output_vpe_gateway_data " ></a > [ vpe\_ gateway\_ data] ( #output\_ vpe\_ gateway\_ data ) | List of VPE gateways data |
Original file line number Diff line number Diff line change @@ -241,6 +241,17 @@ output "vpc_resource_list" {
241
241
]
242
242
}
243
243
244
+ output "vpc_dns" {
245
+ description = " List of VPC DNS details for each of the VPCs."
246
+ value = [
247
+ for vpc in module . vpc :
248
+ {
249
+ dns_instance_id = vpc.dns_instance_id
250
+ dns_custom_resolver_id = vpc.dns_custom_resolver_id
251
+ }
252
+ ]
253
+ }
254
+
244
255
# #############################################################################
245
256
246
257
# #############################################################################
Original file line number Diff line number Diff line change @@ -97,6 +97,11 @@ output "cluster_data" {
97
97
value = module. landing_zone . cluster_data
98
98
}
99
99
100
+ output "vpc_dns" {
101
+ description = " List of VPC DNS details for each of the VPCs."
102
+ value = module. landing_zone . vpc_dns
103
+ }
104
+
100
105
# #############################################################################
101
106
102
107
# #############################################################################
Original file line number Diff line number Diff line change @@ -92,6 +92,11 @@ output "key_map" {
92
92
value = module. landing_zone . key_map
93
93
}
94
94
95
+ output "vpc_dns" {
96
+ description = " List of VPC DNS details for each of the VPCs."
97
+ value = module. landing_zone . vpc_dns
98
+ }
99
+
95
100
# #############################################################################
96
101
97
102
# #############################################################################
Original file line number Diff line number Diff line change @@ -117,6 +117,11 @@ output "key_map" {
117
117
value = module. landing_zone . key_map
118
118
}
119
119
120
+ output "vpc_dns" {
121
+ description = " List of VPC DNS details for each of the VPCs."
122
+ value = module. landing_zone . vpc_dns
123
+ }
124
+
120
125
# #############################################################################
121
126
122
127
# #############################################################################
Original file line number Diff line number Diff line change @@ -117,6 +117,11 @@ output "key_map" {
117
117
value = module. roks_landing_zone . key_map
118
118
}
119
119
120
+ output "vpc_dns" {
121
+ description = " List of VPC DNS details for each of the VPCs."
122
+ value = module. roks_landing_zone . vpc_dns
123
+ }
124
+
120
125
# #############################################################################
121
126
122
127
# #############################################################################
Original file line number Diff line number Diff line change @@ -92,6 +92,11 @@ output "key_map" {
92
92
value = module. landing_zone . key_map
93
93
}
94
94
95
+ output "vpc_dns" {
96
+ description = " List of VPC DNS details for each of the VPCs."
97
+ value = module. landing_zone . vpc_dns
98
+ }
99
+
95
100
# #############################################################################
96
101
97
102
# #############################################################################
Original file line number Diff line number Diff line change @@ -92,6 +92,11 @@ output "key_map" {
92
92
value = module. vpc_landing_zone . key_map
93
93
}
94
94
95
+ output "vpc_dns" {
96
+ description = " List of VPC DNS details for each of the VPCs."
97
+ value = module. vpc_landing_zone . vpc_dns
98
+ }
99
+
95
100
# #############################################################################
96
101
97
102
# #############################################################################
Original file line number Diff line number Diff line change @@ -112,6 +112,11 @@ output "key_map" {
112
112
value = module. landing_zone . key_map
113
113
}
114
114
115
+ output "vpc_dns" {
116
+ description = " List of VPC DNS details for each of the VPCs."
117
+ value = module. landing_zone . vpc_dns
118
+ }
119
+
115
120
# #############################################################################
116
121
117
122
# #############################################################################
Original file line number Diff line number Diff line change @@ -112,6 +112,11 @@ output "key_map" {
112
112
value = module. vsi_landing_zone . key_map
113
113
}
114
114
115
+ output "vpc_dns" {
116
+ description = " List of VPC DNS details for each of the VPCs."
117
+ value = module. vsi_landing_zone . vpc_dns
118
+ }
119
+
115
120
# #############################################################################
116
121
117
122
# #############################################################################
You can’t perform that action at this time.
0 commit comments