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" {
975975|  <a  name =" output_transit_gateway_data " ></a > [ transit\_ gateway\_ data] ( #output\_ transit\_ gateway\_ data )  |  Created transit gateway data | 
976976|  <a  name =" output_transit_gateway_name " ></a > [ transit\_ gateway\_ name] ( #output\_ transit\_ gateway\_ name )  |  Name of created transit gateway | 
977977|  <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. | 
978979|  <a  name =" output_vpc_names " ></a > [ vpc\_ names] ( #output\_ vpc\_ names )  |  List of VPC names | 
979980|  <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. | 
980981|  <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" {
241241  ]
242242}
243243
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+ 
244255# #############################################################################
245256
246257# #############################################################################
Original file line number Diff line number Diff line change @@ -97,6 +97,11 @@ output "cluster_data" {
9797  value        =  . landing_zone . cluster_data 
9898}
9999
100+ output  "vpc_dns"  {
101+   description  =  " List of VPC DNS details for each of the VPCs." 
102+   value        =  . landing_zone . vpc_dns 
103+ }
104+ 
100105# #############################################################################
101106
102107# #############################################################################
Original file line number Diff line number Diff line change @@ -92,6 +92,11 @@ output "key_map" {
9292  value        =  . landing_zone . key_map 
9393}
9494
95+ output  "vpc_dns"  {
96+   description  =  " List of VPC DNS details for each of the VPCs." 
97+   value        =  . landing_zone . vpc_dns 
98+ }
99+ 
95100# #############################################################################
96101
97102# #############################################################################
Original file line number Diff line number Diff line change @@ -117,6 +117,11 @@ output "key_map" {
117117  value        =  . landing_zone . key_map 
118118}
119119
120+ output  "vpc_dns"  {
121+   description  =  " List of VPC DNS details for each of the VPCs." 
122+   value        =  . landing_zone . vpc_dns 
123+ }
124+ 
120125# #############################################################################
121126
122127# #############################################################################
Original file line number Diff line number Diff line change @@ -117,6 +117,11 @@ output "key_map" {
117117  value        =  . roks_landing_zone . key_map 
118118}
119119
120+ output  "vpc_dns"  {
121+   description  =  " List of VPC DNS details for each of the VPCs." 
122+   value        =  . roks_landing_zone . vpc_dns 
123+ }
124+ 
120125# #############################################################################
121126
122127# #############################################################################
Original file line number Diff line number Diff line change @@ -92,6 +92,11 @@ output "key_map" {
9292  value        =  . landing_zone . key_map 
9393}
9494
95+ output  "vpc_dns"  {
96+   description  =  " List of VPC DNS details for each of the VPCs." 
97+   value        =  . landing_zone . vpc_dns 
98+ }
99+ 
95100# #############################################################################
96101
97102# #############################################################################
Original file line number Diff line number Diff line change @@ -92,6 +92,11 @@ output "key_map" {
9292  value        =  . vpc_landing_zone . key_map 
9393}
9494
95+ output  "vpc_dns"  {
96+   description  =  " List of VPC DNS details for each of the VPCs." 
97+   value        =  . vpc_landing_zone . vpc_dns 
98+ }
99+ 
95100# #############################################################################
96101
97102# #############################################################################
Original file line number Diff line number Diff line change @@ -112,6 +112,11 @@ output "key_map" {
112112  value        =  . landing_zone . key_map 
113113}
114114
115+ output  "vpc_dns"  {
116+   description  =  " List of VPC DNS details for each of the VPCs." 
117+   value        =  . landing_zone . vpc_dns 
118+ }
119+ 
115120# #############################################################################
116121
117122# #############################################################################
Original file line number Diff line number Diff line change @@ -112,6 +112,11 @@ output "key_map" {
112112  value        =  . vsi_landing_zone . key_map 
113113}
114114
115+ output  "vpc_dns"  {
116+   description  =  " List of VPC DNS details for each of the VPCs." 
117+   value        =  . vsi_landing_zone . vpc_dns 
118+ }
119+ 
115120# #############################################################################
116121
117122# #############################################################################
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments