-
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
Migrate Route 53 Recovery Readiness
to AWS SDK v2
#38801
Migrate Route 53 Recovery Readiness
to AWS SDK v2
#38801
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:
|
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 PKG=route53recoveryreadiness
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.6 test ./internal/service/route53recoveryreadiness/... -v -count 1 -parallel 20 -timeout 360m
--- PASS: TestAccRoute53RecoveryReadinessResourceSet_disappears (30.60s)
--- PASS: TestAccRoute53RecoveryReadinessRecoveryGroup_disappears (32.05s)
=== CONT TestAccRoute53RecoveryReadinessResourceSet_readinessScope
--- PASS: TestAccRoute53RecoveryReadinessCell_basic (33.95s)
--- PASS: TestAccRoute53RecoveryReadinessCell_timeout (34.26s)
--- PASS: TestAccRoute53RecoveryReadinessResourceSet_timeout (35.27s)
--- PASS: TestAccRoute53RecoveryReadinessRecoveryGroup_timeout (38.18s)
--- PASS: TestAccRoute53RecoveryReadinessRecoveryGroup_basic (40.17s)
--- PASS: TestAccRoute53RecoveryReadinessResourceSet_basicDNSTargetResource (40.45s)
--- PASS: TestAccRoute53RecoveryReadinessResourceSet_dnsTargetResourceR53Target (41.42s)
--- PASS: TestAccRoute53RecoveryReadinessRecoveryGroup_nestedCell (42.30s)
--- PASS: TestAccRoute53RecoveryReadinessReadinessCheck_timeout (46.36s)
--- PASS: TestAccRoute53RecoveryReadinessCell_disappears (16.44s)
--- PASS: TestAccRoute53RecoveryReadinessReadinessCheck_disappears (47.63s)
--- PASS: TestAccRoute53RecoveryReadinessReadinessCheck_basic (47.73s)
--- PASS: TestAccRoute53RecoveryReadinessResourceSet_basic (49.03s)
--- PASS: TestAccRoute53RecoveryReadinessCell_nestedCell (65.00s)
--- PASS: TestAccRoute53RecoveryReadinessCell_tags (65.37s)
--- PASS: TestAccRoute53RecoveryReadinessRecoveryGroup_tags (69.30s)
--- PASS: TestAccRoute53RecoveryReadinessResourceSet_tags (69.79s)
--- PASS: TestAccRoute53RecoveryReadinessReadinessCheck_tags (77.81s)
--- PASS: TestAccRoute53RecoveryReadinessResourceSet_readinessScope (47.96s)
--- PASS: TestAccRoute53RecoveryReadinessResourceSet_dnsTargetResourceNLBTarget (224.23s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/route53recoveryreadiness 231.209s
} | ||
if err != nil { | ||
return sdkdiag.AppendErrorf(diags, "waiting for Route 53 Recovery Readiness Cell (%s) deletion: %s", d.Id(), err) | ||
} | ||
|
||
return diags | ||
} | ||
|
||
func findCellByName(ctx context.Context, conn *route53recoveryreadiness.Client, name string) (*route53recoveryreadiness.GetCellOutput, error) { |
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.
And new finders! 🥇 🎉
Thanks for your contribution, @DanielRieske! 👍 |
This functionality has been released in v5.63.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 migrates the
Route 53 Recovery Readiness
resources to AWS SDKv2.Relations
Closes #36205
Relates #32976
References
Output from Acceptance Testing