-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
b-aws_ecs-fix-service-connect-bug-when-empty-block-supplied #36309
Conversation
Community NoteVoting for Prioritization
For Submitters
|
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 🚀.
% make testacc TESTARGS='-run=TestAccECSService_ServiceConnect_' PKG=ecs ACCTEST_PARALLELISM=3
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecs/... -v -count 1 -parallel 3 -run=TestAccECSService_ServiceConnect_ -timeout 360m
=== RUN TestAccECSService_ServiceConnect_basic
=== PAUSE TestAccECSService_ServiceConnect_basic
=== RUN TestAccECSService_ServiceConnect_full
=== PAUSE TestAccECSService_ServiceConnect_full
=== RUN TestAccECSService_ServiceConnect_tls_with_empty_timeout
=== PAUSE TestAccECSService_ServiceConnect_tls_with_empty_timeout
=== RUN TestAccECSService_ServiceConnect_ingressPortOverride
=== PAUSE TestAccECSService_ServiceConnect_ingressPortOverride
=== RUN TestAccECSService_ServiceConnect_remove
=== PAUSE TestAccECSService_ServiceConnect_remove
=== CONT TestAccECSService_ServiceConnect_basic
=== CONT TestAccECSService_ServiceConnect_ingressPortOverride
=== CONT TestAccECSService_ServiceConnect_tls_with_empty_timeout
--- PASS: TestAccECSService_ServiceConnect_basic (166.23s)
=== CONT TestAccECSService_ServiceConnect_full
--- PASS: TestAccECSService_ServiceConnect_ingressPortOverride (173.92s)
=== CONT TestAccECSService_ServiceConnect_remove
--- PASS: TestAccECSService_ServiceConnect_tls_with_empty_timeout (173.98s)
--- PASS: TestAccECSService_ServiceConnect_full (173.83s)
--- PASS: TestAccECSService_ServiceConnect_remove (176.44s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/ecs 357.649s
@dgr237 Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.41.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. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
A bug exists in the ECS Service Connect configuration if one of the blocks:
issuer_cert_authority is configured as:
This case should be handled nicely and the plan fail (setting isser_cert_authority or aws_private_authority_arn throws an error).
or:
timeout is configured as:
timeout {}
or
This case should be handled by setting timeout to null
Relations
Closes #35868
Output from Acceptance Testing