Skip to content

Commit 0ea6ffa

Browse files
authored
fix: Adding missing RDS endpoint to output.tf (#563)
1 parent 0b6070f commit 0ea6ffa

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -876,6 +876,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
876876
| vpc\_endpoint\_qldb\_session\_dns\_entry | The DNS entries for the VPC Endpoint for QLDB Session. |
877877
| vpc\_endpoint\_qldb\_session\_id | The ID of VPC endpoint for QLDB Session |
878878
| vpc\_endpoint\_qldb\_session\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for QLDB Session. |
879+
| vpc\_endpoint\_rds\_dns\_entry | The DNS entries for the VPC Endpoint for RDS. |
880+
| vpc\_endpoint\_rds\_id | The ID of VPC endpoint for RDS |
881+
| vpc\_endpoint\_rds\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for RDS. |
879882
| vpc\_endpoint\_rekognition\_dns\_entry | The DNS entries for the VPC Endpoint for Rekognition. |
880883
| vpc\_endpoint\_rekognition\_id | The ID of VPC endpoint for Rekognition |
881884
| vpc\_endpoint\_rekognition\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for Rekognition. |

outputs.tf

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1407,6 +1407,22 @@ output "vpc_endpoint_codeartifact_repositories_dns_entry" {
14071407
value = flatten(aws_vpc_endpoint.codeartifact_repositories.*.dns_entry)
14081408
}
14091409

1410+
output "vpc_endpoint_rds_id" {
1411+
description = "The ID of VPC endpoint for RDS"
1412+
value = concat(aws_vpc_endpoint.rds.*.id, [""])[0]
1413+
}
1414+
1415+
output "vpc_endpoint_rds_network_interface_ids" {
1416+
description = "One or more network interfaces for the VPC Endpoint for RDS."
1417+
value = flatten(aws_vpc_endpoint.rds.*.network_interface_ids)
1418+
}
1419+
1420+
output "vpc_endpoint_rds_dns_entry" {
1421+
description = "The DNS entries for the VPC Endpoint for RDS."
1422+
value = flatten(aws_vpc_endpoint.rds.*.dns_entry)
1423+
}
1424+
1425+
14101426
# VPC flow log
14111427
output "vpc_flow_log_id" {
14121428
description = "The ID of the Flow Log resource"

0 commit comments

Comments
 (0)