-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VPC endpoint service private dns name support #16495
VPC endpoint service private dns name support #16495
Conversation
Verified acceptance tests: $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSVpcEndpointService_basic\|TestAccAWSVpcEndpointService_private_dns_name'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSVpcEndpointService_basic\|TestAccAWSVpcEndpointService_private_dns_name -timeout 120m
=== RUN TestAccAWSVpcEndpointService_basic
=== PAUSE TestAccAWSVpcEndpointService_basic
=== RUN TestAccAWSVpcEndpointService_private_dns_name
=== PAUSE TestAccAWSVpcEndpointService_private_dns_name
=== CONT TestAccAWSVpcEndpointService_basic
=== CONT TestAccAWSVpcEndpointService_private_dns_name
--- PASS: TestAccAWSVpcEndpointService_basic (240.31s)
--- PASS: TestAccAWSVpcEndpointService_private_dns_name (256.74s)
PASS
ok github.com/terraform-providers/terraform-provider-aws/aws 256.783s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Added support for setting the private dns name in an endpoint service. We also return the config that is required for users to set in their route53 configuration. Signed-off-by: Stijn De Haes <stijndehaes@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @stijndehaes 👋 Thank you for submitting this. Overall this was in pretty good shape, just some minor items, which I'll get in now before merging to verify, then we will pull this functionality in.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All set -- thanks again, @stijndehaes 🚀
Output from acceptance testing:
--- PASS: TestAccAWSVpcEndpointService_GatewayLoadBalancerArns (211.72s)
--- PASS: TestAccAWSVpcEndpointService_disappears (259.98s)
--- PASS: TestAccAWSVpcEndpointService_private_dns_name (260.23s)
--- PASS: TestAccAWSVpcEndpointService_tags (260.39s)
--- PASS: TestAccAWSVpcEndpointService_basic (315.92s)
--- PASS: TestAccAWSVpcEndpointService_AllowedPrincipals (326.95s)
This has been released in version 3.23.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks! |
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 feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Added support for setting the private dns name
in an endpoint service. We also return the config
that is required for users to set in their route53
configuration.
Signed-off-by: Stijn De Haes stijndehaes@gmail.com
Community Note
Closes #16568
Release note for CHANGELOG:
Output from acceptance testing: