-
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
add initial codeconnections resources #40300
add initial codeconnections resources #40300
Conversation
Community NoteVoting for Prioritization
For Submitters
|
Thank you for your contribution! 🚀 Please note that typically Go dependency changes are handled in this repository by dependabot or the maintainers. This is to prevent pull request merge conflicts and further delay reviews of contributions. Remove any changes to the Additional details:
|
4dc63bb
to
6115308
Compare
Hello @ewbankkit! I've put this PR together - but - I've hit a roadblock with a tagging issue on the |
Thanks for your assistance @ewbankkit! I think this PR is now ready for final review/merging. |
# Conflicts: # go.mod # go.sum
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=TestAccCodeConnectionsConnection_\|TestAccCodeConnectionsHost_' PKG=codeconnections ACCTEST_PARALLELISM=3
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.23.3 test ./internal/service/codeconnections/... -v -count 1 -parallel 3 -run=TestAccCodeConnectionsConnection_\|TestAccCodeConnectionsHost_ -timeout 360m
2024/12/03 12:47:38 Initializing Terraform AWS Provider...
=== RUN TestAccCodeConnectionsConnection_basic
=== PAUSE TestAccCodeConnectionsConnection_basic
=== RUN TestAccCodeConnectionsConnection_hostARN
=== PAUSE TestAccCodeConnectionsConnection_hostARN
=== RUN TestAccCodeConnectionsConnection_disappears
=== PAUSE TestAccCodeConnectionsConnection_disappears
=== RUN TestAccCodeConnectionsConnection_tags
=== PAUSE TestAccCodeConnectionsConnection_tags
=== RUN TestAccCodeConnectionsHost_basic
=== PAUSE TestAccCodeConnectionsHost_basic
=== RUN TestAccCodeConnectionsHost_disappears
=== PAUSE TestAccCodeConnectionsHost_disappears
=== RUN TestAccCodeConnectionsHost_vpc
=== PAUSE TestAccCodeConnectionsHost_vpc
=== RUN TestAccCodeConnectionsHost_tags
=== PAUSE TestAccCodeConnectionsHost_tags
=== CONT TestAccCodeConnectionsConnection_basic
=== CONT TestAccCodeConnectionsHost_basic
=== CONT TestAccCodeConnectionsConnection_disappears
--- PASS: TestAccCodeConnectionsConnection_disappears (11.73s)
=== CONT TestAccCodeConnectionsConnection_tags
--- PASS: TestAccCodeConnectionsConnection_basic (13.59s)
=== CONT TestAccCodeConnectionsConnection_hostARN
--- PASS: TestAccCodeConnectionsHost_basic (13.76s)
=== CONT TestAccCodeConnectionsHost_vpc
--- PASS: TestAccCodeConnectionsConnection_hostARN (13.82s)
=== CONT TestAccCodeConnectionsHost_tags
--- PASS: TestAccCodeConnectionsConnection_tags (27.51s)
=== CONT TestAccCodeConnectionsHost_disappears
--- PASS: TestAccCodeConnectionsHost_disappears (10.70s)
--- PASS: TestAccCodeConnectionsHost_tags (27.45s)
--- PASS: TestAccCodeConnectionsHost_vpc (541.20s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/codeconnections 560.267s
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 🚀
@silvaalbert Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.80.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
This PR adds
aws_codeconnections_connection
andaws_codeconnections_host
resources. While there are still resources to be developed for CodeConnections, these 2 are the main ones needed to replace CodeStar connections.Relations
Relates #36671
References
https://docs.aws.amazon.com/codeconnections/latest/APIReference/API_CreateConnection.html
https://docs.aws.amazon.com/codeconnections/latest/APIReference/API_CreateHost.html
Output from Acceptance Testing