-
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
feat: add additional s3_settings
attributes to DMS endpoint for S3
#20913
feat: add additional s3_settings
attributes to DMS endpoint for S3
#20913
Conversation
Pull request #21306 has significantly refactored the AWS Provider codebase. As a result, most PRs opened prior to the refactor now have merge conflicts that must be resolved before proceeding. Specifically, PR #21306 relocated the code for all AWS resources and data sources from a single We recognize that many pull requests have been open for some time without yet being addressed by our maintainers. Therefore, we want to make it clear that resolving these conflicts in no way affects the prioritization of a particular pull request. Once a pull request has been prioritized for review, the necessary changes will be made by a maintainer -- either directly or in collaboration with the pull request author. For a more complete description of this refactor, including examples of how old filepaths and function names correspond to their new counterparts: please refer to issue #20000. For a quick guide on how to amend your pull request to resolve the merge conflicts resulting from this refactor and bring it in line with our new code patterns: please refer to our Service Package Refactor Pull Request Guide. |
Is this a priority at all to get merged? I am running into an issue where a DMS resource that previously was created fine is now failing due to the cdcPath not being set, and I don't see a way to set it through this provider. |
@ewbankkit any tips on how to handle diffs between the AWS Go SDK and the AWS API? The SDK is setting a const of
|
I ended up doing this which seems to jive with existing patterns. doesn't seem "right" but let me know if there is a more preferred way of handling a case like this |
added cdc_path, date_partition_sequence, and timestamp_column_name parameters
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.
Looks great 🎉
Output from acceptance tests (us-west-2
):
% make testacc TESTS=TestAccDMSEndpoint_ PKG=dms
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/dms/... -v -count 1 -parallel 20 -run='TestAccDMSEndpoint_' -timeout 180m
--- PASS: TestAccDMSEndpoint_MongoDB_basic (40.78s)
--- PASS: TestAccDMSEndpoint_Oracle_secretID (43.26s)
--- PASS: TestAccDMSEndpoint_PostgreSQL_secretID (43.41s)
--- PASS: TestAccDMSEndpoint_PostgreSQL_update (46.68s)
--- PASS: TestAccDMSEndpoint_OpenSearch_basic (46.71s)
--- PASS: TestAccDMSEndpoint_Oracle_update (47.23s)
--- PASS: TestAccDMSEndpoint_MongoDB_update (47.25s)
--- PASS: TestAccDMSEndpoint_db2 (48.76s)
--- PASS: TestAccDMSEndpoint_docDB (49.58s)
--- PASS: TestAccDMSEndpoint_kafka (49.73s)
--- PASS: TestAccDMSEndpoint_basic (49.73s)
--- PASS: TestAccDMSEndpoint_OpenSearch_errorRetryDuration (50.12s)
--- PASS: TestAccDMSEndpoint_Oracle_basic (50.68s)
--- PASS: TestAccDMSEndpoint_PostgreSQL_basic (50.91s)
--- PASS: TestAccDMSEndpoint_S3_extraConnectionAttributes (52.70s)
--- PASS: TestAccDMSEndpoint_OpenSearch_extraConnectionAttributes (53.42s)
--- PASS: TestAccDMSEndpoint_OpenSearch_fullLoadErrorPercentage (53.57s)
--- PASS: TestAccDMSEndpoint_dynamoDB (58.84s)
--- PASS: TestAccDMSEndpoint_S3_basic (59.53s)
--- PASS: TestAccDMSEndpoint_kinesis (84.54s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/dms 85.951s
Output from acceptance tests (GovCloud):
% make testacc TESTS=TestAccDMSEndpoint_ PKG=dms
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/dms/... -v -count 1 -parallel 20 -run='TestAccDMSEndpoint_' -timeout 180m
--- PASS: TestAccDMSEndpoint_PostgreSQL_basic (121.37s)
--- PASS: TestAccDMSEndpoint_Oracle_basic (123.93s)
--- PASS: TestAccDMSEndpoint_MongoDB_basic (124.91s)
--- PASS: TestAccDMSEndpoint_S3_extraConnectionAttributes (136.23s)
--- PASS: TestAccDMSEndpoint_PostgreSQL_secretID (136.89s)
--- PASS: TestAccDMSEndpoint_Oracle_secretID (137.78s)
--- PASS: TestAccDMSEndpoint_OpenSearch_extraConnectionAttributes (140.97s)
--- PASS: TestAccDMSEndpoint_OpenSearch_basic (147.02s)
--- PASS: TestAccDMSEndpoint_OpenSearch_errorRetryDuration (147.36s)
--- PASS: TestAccDMSEndpoint_OpenSearch_fullLoadErrorPercentage (147.56s)
--- PASS: TestAccDMSEndpoint_PostgreSQL_update (147.64s)
--- PASS: TestAccDMSEndpoint_kafka (149.32s)
--- PASS: TestAccDMSEndpoint_basic (150.06s)
--- PASS: TestAccDMSEndpoint_Oracle_update (150.08s)
--- PASS: TestAccDMSEndpoint_db2 (150.32s)
--- PASS: TestAccDMSEndpoint_MongoDB_update (151.37s)
--- PASS: TestAccDMSEndpoint_dynamoDB (159.35s)
--- PASS: TestAccDMSEndpoint_docDB (160.74s)
--- PASS: TestAccDMSEndpoint_S3_basic (161.01s)
--- PASS: TestAccDMSEndpoint_kinesis (178.65s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/dms 180.284s
This functionality has been released in v4.2.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. |
Community Note
Closes #13491
Closes #22377
Output from acceptance testing: