-
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
Datasync: Add missing option object_tags to aws_datasync_task #27811
Datasync: Add missing option object_tags to aws_datasync_task #27811
Conversation
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.
Welcome @rickard-von-essen 👋
It looks like this is your first Pull Request submission to the Terraform AWS Provider! If you haven’t already done so please make sure you have checked out our CONTRIBUTOR guide and FAQ to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval.
Also take a look at our FAQ which details how we prioritize Pull Requests for inclusion.
Thanks again, and welcome to the community! 😃
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.
missing changelog but otherwise LGTM
…riptor_copy_flags
d94c8c3
to
1e0af20
Compare
Thank you for your contribution! 🚀 Please note that the Remove any changes to the |
1e0af20
to
2e3e1cb
Compare
DataSync Task was missing one option, ObjectTags. Added support for that. Ref: https://docs.aws.amazon.com/datasync/latest/userguide/API_Options.html
2e3e1cb
to
2b2d69b
Compare
Sorry for dropping the ball on this.. Fixed the changelog, rebased, and re-runned the IT's:
|
@DrFaust92 can we get this merged 🙏🏻 . I fixed the changelog. |
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
…cOptions_objectTags'.
…use 'decodeObjectStorageURI'.
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=TestAccDataSyncTask_DefaultSyncOptions_objectTags\|TestAccDataSyncTask_basic$$' PKG=datasync
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/datasync/... -v -count 1 -parallel 20 -run=TestAccDataSyncTask_DefaultSyncOptions_objectTags\|TestAccDataSyncTask_basic$ -timeout 180m
=== RUN TestAccDataSyncTask_basic
=== PAUSE TestAccDataSyncTask_basic
=== RUN TestAccDataSyncTask_DefaultSyncOptions_objectTags
=== PAUSE TestAccDataSyncTask_DefaultSyncOptions_objectTags
=== CONT TestAccDataSyncTask_basic
=== CONT TestAccDataSyncTask_DefaultSyncOptions_objectTags
--- PASS: TestAccDataSyncTask_basic (170.13s)
--- PASS: TestAccDataSyncTask_DefaultSyncOptions_objectTags (212.45s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/datasync 219.737s
% make testacc TESTARGS='-run=TestAccDataSyncLocationObjectStorage_' PKG=datasync ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/datasync/... -v -count 1 -parallel 2 -run=TestAccDataSyncLocationObjectStorage_ -timeout 180m
=== RUN TestAccDataSyncLocationObjectStorage_basic
=== PAUSE TestAccDataSyncLocationObjectStorage_basic
=== RUN TestAccDataSyncLocationObjectStorage_disappears
=== PAUSE TestAccDataSyncLocationObjectStorage_disappears
=== RUN TestAccDataSyncLocationObjectStorage_tags
=== PAUSE TestAccDataSyncLocationObjectStorage_tags
=== RUN TestAccDataSyncLocationObjectStorage_serverCertificate
=== PAUSE TestAccDataSyncLocationObjectStorage_serverCertificate
=== CONT TestAccDataSyncLocationObjectStorage_basic
=== CONT TestAccDataSyncLocationObjectStorage_tags
--- PASS: TestAccDataSyncLocationObjectStorage_basic (115.55s)
=== CONT TestAccDataSyncLocationObjectStorage_disappears
--- PASS: TestAccDataSyncLocationObjectStorage_tags (174.17s)
=== CONT TestAccDataSyncLocationObjectStorage_serverCertificate
--- PASS: TestAccDataSyncLocationObjectStorage_serverCertificate (104.84s)
--- PASS: TestAccDataSyncLocationObjectStorage_disappears (123.25s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/datasync 896.463s
@rickard-von-essen Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.5.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 adds the missing option
objectTags
to DataSync task. See API docs - DataSync Options.Closes #31301.
Output from Acceptance Testing