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
9163310d
Unverified
Commit
9163310d
authored
Mar 22, 2024
by
Zack A
Committed by
GitHub
Mar 22, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Allow setting vpc endpoints as an input for each endpoint (#1056)
parent
878b5d2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
main.tf
modules/vpc-endpoints/main.tf
+1
-1
No files found.
modules/vpc-endpoints/main.tf
View file @
9163310d
...
...
@@ -24,7 +24,7 @@ resource "aws_vpc_endpoint" "this" {
for_each
=
local
.
endpoints
vpc_id
=
var
.
vpc_id
service_name
=
data
.
aws_vpc_endpoint_service
.
this
[
each
.
key
]
.
service_name
service_name
=
try
(
each
.
value
.
service_endpoint
,
data
.
aws_vpc_endpoint_service
.
this
[
each
.
key
]
.
service_name
)
vpc_endpoint_type
=
try
(
each
.
value
.
service_type
,
"Interface"
)
auto_accept
=
try
(
each
.
value
.
auto_accept
,
null
)
...
...
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