File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -876,6 +876,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
876
876
| vpc\_ endpoint\_ qldb\_ session\_ dns\_ entry | The DNS entries for the VPC Endpoint for QLDB Session. |
877
877
| vpc\_ endpoint\_ qldb\_ session\_ id | The ID of VPC endpoint for QLDB Session |
878
878
| 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. |
879
882
| vpc\_ endpoint\_ rekognition\_ dns\_ entry | The DNS entries for the VPC Endpoint for Rekognition. |
880
883
| vpc\_ endpoint\_ rekognition\_ id | The ID of VPC endpoint for Rekognition |
881
884
| vpc\_ endpoint\_ rekognition\_ network\_ interface\_ ids | One or more network interfaces for the VPC Endpoint for Rekognition. |
Original file line number Diff line number Diff line change @@ -1407,6 +1407,22 @@ output "vpc_endpoint_codeartifact_repositories_dns_entry" {
1407
1407
value = flatten (aws_vpc_endpoint. codeartifact_repositories . * . dns_entry )
1408
1408
}
1409
1409
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
+
1410
1426
# VPC flow log
1411
1427
output "vpc_flow_log_id" {
1412
1428
description = " The ID of the Flow Log resource"
You can’t perform that action at this time.
0 commit comments