-
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
[aws_dms_s3_endpoint] Remove the default value of false
for add_trailing_padding_character
#34048
Conversation
…ailing_padding_character` (hashicorp#32698)
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=TestAccDMSS3Endpoint_' PKG=dms ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/dms/... -v -count 1 -parallel 2 -run=TestAccDMSS3Endpoint_ -timeout 360m
=== RUN TestAccDMSS3Endpoint_basic
=== PAUSE TestAccDMSS3Endpoint_basic
=== RUN TestAccDMSS3Endpoint_update
=== PAUSE TestAccDMSS3Endpoint_update
=== RUN TestAccDMSS3Endpoint_simple
=== PAUSE TestAccDMSS3Endpoint_simple
=== RUN TestAccDMSS3Endpoint_sourceSimple
=== PAUSE TestAccDMSS3Endpoint_sourceSimple
=== RUN TestAccDMSS3Endpoint_source
=== PAUSE TestAccDMSS3Endpoint_source
=== RUN TestAccDMSS3Endpoint_detachTargetOnLobLookupFailureParquet
=== PAUSE TestAccDMSS3Endpoint_detachTargetOnLobLookupFailureParquet
=== CONT TestAccDMSS3Endpoint_basic
=== CONT TestAccDMSS3Endpoint_sourceSimple
--- PASS: TestAccDMSS3Endpoint_basic (45.12s)
=== CONT TestAccDMSS3Endpoint_detachTargetOnLobLookupFailureParquet
--- PASS: TestAccDMSS3Endpoint_sourceSimple (52.92s)
=== CONT TestAccDMSS3Endpoint_source
--- PASS: TestAccDMSS3Endpoint_source (65.33s)
=== CONT TestAccDMSS3Endpoint_simple
--- PASS: TestAccDMSS3Endpoint_detachTargetOnLobLookupFailureParquet (105.01s)
=== CONT TestAccDMSS3Endpoint_update
--- PASS: TestAccDMSS3Endpoint_simple (63.45s)
--- PASS: TestAccDMSS3Endpoint_update (72.00s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/dms 227.661s
@sodle Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.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. 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
Removes the default
add_trailing_padding_character
attribute foraws_dms_s3_endpoint
resources. This default was previouslyfalse
, but will now result in no value being specified (relying AWS's server-side default offalse
).This fixes an incompatibility with old versions of the DMS engine (<3.4.7), which raise an error when this attribute is defined. Behavior will remain unchanged for DMS versions >=3.4.7.
Relations
Closes #32698
References
AWS DMS release notes, showing the addition of the
AddTrailingPaddingCharacter
option in 3.4.7.AWS DMS S3Settings documentation, showing the default value of
false
if noAddTrailingPaddingCharacter
option is specified.Output from Acceptance Testing