You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is pretty simple. As a followup to my prior bug report in #982, I tested the fix in #1023 and noticed that when trying to set the following, the private_dns_only_for_inbound_resolver_endpoint flag was still set to false (Note: a prerequisite of this is to have an existing S3 Gateway endpoint so if testing is needed, that will need to be created first before the Interface endpoint with this flag enabled will succeed.)
This can be fixed by updating to private_dns_only_for_inbound_resolver_endpoint = try(each.value.dns_options.private_dns_only_for_inbound_resolver_endpoint, null)
I've verified this fix locally but I don't have any experience with PRs to this repo.
✋ I have searched the open/closed issues and my issue is not listed.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Description
This is pretty simple. As a followup to my prior bug report in #982, I tested the fix in #1023 and noticed that when trying to set the following, the
private_dns_only_for_inbound_resolver_endpoint
flag was still set to false (Note: a prerequisite of this is to have an existing S3 Gateway endpoint so if testing is needed, that will need to be created first before the Interface endpoint with this flag enabled will succeed.)Upon investigation of the fix, I noticed that
dns_options
was omitted onterraform-aws-vpc/modules/vpc-endpoints/main.tf
Line 42 in e476850
This can be fixed by updating to
private_dns_only_for_inbound_resolver_endpoint = try(each.value.dns_options.private_dns_only_for_inbound_resolver_endpoint, null)
I've verified this fix locally but I don't have any experience with PRs to this repo.
Versions
Module version [Required]:
v5.5.0
Terraform version:
v1.4.6
Provider version(s):
Reproduction Code [Required]
Steps to reproduce the behavior:
explained above already.
Expected behavior
The flag
private_dns_only_for_inbound_resolver_endpoint
should be trueActual behavior
The flag
private_dns_only_for_inbound_resolver_endpoint
is ignoredThe text was updated successfully, but these errors were encountered: