Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-vpc
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Terraform Modules
terraform-aws-vpc
Commits
0ea6ffa9
Unverified
Commit
0ea6ffa9
authored
Jan 29, 2021
by
Andor Markus
Committed by
GitHub
Jan 29, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Adding missing RDS endpoint to output.tf (#563)
parent
0b6070f8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
README.md
README.md
+3
-0
outputs.tf
outputs.tf
+16
-0
No files found.
README.md
View file @
0ea6ffa9
...
@@ -876,6 +876,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
...
@@ -876,6 +876,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
| vpc
\_
endpoint
\_
qldb
\_
session
\_
dns
\_
entry | The DNS entries for the VPC Endpoint for QLDB Session. |
| vpc
\_
endpoint
\_
qldb
\_
session
\_
dns
\_
entry | The DNS entries for the VPC Endpoint for QLDB Session. |
| vpc
\_
endpoint
\_
qldb
\_
session
\_
id | The ID of VPC endpoint for QLDB Session |
| vpc
\_
endpoint
\_
qldb
\_
session
\_
id | The ID of VPC endpoint for QLDB Session |
| vpc
\_
endpoint
\_
qldb
\_
session
\_
network
\_
interface
\_
ids | One or more network interfaces for the VPC Endpoint for QLDB Session. |
| vpc
\_
endpoint
\_
qldb
\_
session
\_
network
\_
interface
\_
ids | One or more network interfaces for the VPC Endpoint for QLDB Session. |
| vpc
\_
endpoint
\_
rds
\_
dns
\_
entry | The DNS entries for the VPC Endpoint for RDS. |
| vpc
\_
endpoint
\_
rds
\_
id | The ID of VPC endpoint for RDS |
| vpc
\_
endpoint
\_
rds
\_
network
\_
interface
\_
ids | One or more network interfaces for the VPC Endpoint for RDS. |
| vpc
\_
endpoint
\_
rekognition
\_
dns
\_
entry | The DNS entries for the VPC Endpoint for Rekognition. |
| vpc
\_
endpoint
\_
rekognition
\_
dns
\_
entry | The DNS entries for the VPC Endpoint for Rekognition. |
| vpc
\_
endpoint
\_
rekognition
\_
id | The ID of VPC endpoint for Rekognition |
| vpc
\_
endpoint
\_
rekognition
\_
id | The ID of VPC endpoint for Rekognition |
| vpc
\_
endpoint
\_
rekognition
\_
network
\_
interface
\_
ids | One or more network interfaces for the VPC Endpoint for Rekognition. |
| vpc
\_
endpoint
\_
rekognition
\_
network
\_
interface
\_
ids | One or more network interfaces for the VPC Endpoint for Rekognition. |
...
...
outputs.tf
View file @
0ea6ffa9
...
@@ -1407,6 +1407,22 @@ output "vpc_endpoint_codeartifact_repositories_dns_entry" {
...
@@ -1407,6 +1407,22 @@ output "vpc_endpoint_codeartifact_repositories_dns_entry" {
value
=
flatten
(
aws_vpc_endpoint
.
codeartifact_repositories
.*.
dns_entry
)
value
=
flatten
(
aws_vpc_endpoint
.
codeartifact_repositories
.*.
dns_entry
)
}
}
output
"vpc_endpoint_rds_id"
{
description
=
"The ID of VPC endpoint for RDS"
value
=
concat
(
aws_vpc_endpoint
.
rds
.*.
id
,
[
""
]
)
[
0
]
}
output
"vpc_endpoint_rds_network_interface_ids"
{
description
=
"One or more network interfaces for the VPC Endpoint for RDS."
value
=
flatten
(
aws_vpc_endpoint
.
rds
.*.
network_interface_ids
)
}
output
"vpc_endpoint_rds_dns_entry"
{
description
=
"The DNS entries for the VPC Endpoint for RDS."
value
=
flatten
(
aws_vpc_endpoint
.
rds
.*.
dns_entry
)
}
# VPC flow log
# VPC flow log
output
"vpc_flow_log_id"
{
output
"vpc_flow_log_id"
{
description
=
"The ID of the Flow Log resource"
description
=
"The ID of the Flow Log resource"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment