-
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
r/aws_route53_record: Correct fqdn
for wildcard records
#40868
Conversation
% make testacc TESTARGS='-run=TestAccRoute53Record_wildcard' PKG=route53 make: Verifying source code with gofmt... ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.23.3 test ./internal/service/route53/... -v -count 1 -parallel 20 -run=TestAccRoute53Record_wildcard -timeout 360m 2025/01/10 08:51:16 Initializing Terraform AWS Provider... === RUN TestAccRoute53Record_wildcard === PAUSE TestAccRoute53Record_wildcard === CONT TestAccRoute53Record_wildcard record_test.go:371: Step 1/3 error: Post-apply refresh state check(s) failed: error checking value for attribute at path: aws_route53_record.wildcard.fqdn, err: expected value *.domain.test for StringExact check, got: \052.domain.test --- FAIL: TestAccRoute53Record_wildcard (167.02s) FAIL FAIL github.com/hashicorp/terraform-provider-aws/internal/service/route53 172.807s FAIL make: *** [testacc] Error 1
…3-domain-wildcard
This reverts commit 09ca52f.
% make testacc TESTARGS='-run=TestAccRoute53Record_wildcard\|TestAccRoute53Record_basic' PKG=route53 make: Verifying source code with gofmt... ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.23.3 test ./internal/service/route53/... -v -count 1 -parallel 20 -run=TestAccRoute53Record_wildcard\|TestAccRoute53Record_basic -timeout 360m 2025/01/10 09:48:21 Initializing Terraform AWS Provider... === RUN TestAccRoute53Record_basic === PAUSE TestAccRoute53Record_basic === RUN TestAccRoute53Record_wildcard === PAUSE TestAccRoute53Record_wildcard === CONT TestAccRoute53Record_basic === CONT TestAccRoute53Record_wildcard --- PASS: TestAccRoute53Record_basic (153.27s) --- PASS: TestAccRoute53Record_wildcard (223.81s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/route53 229.324s
Community NoteVoting for Prioritization
For Submitters
|
Thank you for your contribution! 🚀 Please note that the Remove any changes to the |
Thank you for your contribution! 🚀 Please note that the Remove any changes to the |
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=route53 TESTS=TestAccRoute53Record_wildcard
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.23.3 test ./internal/service/route53/... -v -count 1 -parallel 20 -run='TestAccRoute53Record_wildcard' -timeout 360m
2025/01/10 10:16:55 Initializing Terraform AWS Provider...
=== RUN TestAccRoute53Record_wildcard
=== PAUSE TestAccRoute53Record_wildcard
=== CONT TestAccRoute53Record_wildcard
--- PASS: TestAccRoute53Record_wildcard (228.31s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/route53 233.553s
This functionality has been released in v5.83.1 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! |
Description
Restores pre-v5.83.0 behavior for the
fqdn
attribute with wildcard domain names.Relations
Closes #40851.
Relates #40154.
Output from Acceptance Testing
Before
After