Skip to content
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_transfer_user - fix error removing home_directory_mappings #27563

Merged
merged 6 commits into from
Mar 2, 2023

Conversation

mtt88
Copy link
Contributor

@mtt88 mtt88 commented Oct 31, 2022

Description

It's not currently possible to completely remove all home_directory_mappings attributes from a transfer user. Removing all
home_directory_mappings from a transfer_user was represented as an empty list. This caused a validation error in the AWS SDK. See here.

HomeDirectoryMappings []*HomeDirectoryMapEntry `min:"1" type:"list"`
InvalidParameter: 1 validation error(s) found.
│ - minimum field size of 1, UpdateUserInput.HomeDirectoryMappings.

We now represent this value as nil rather than an empty list.

Note: The tests for transfer package are serial/non-concurrent. I temporarily changed the access of the test to allow individual execution and the output below.

Relations

Output from Acceptance Testing

 make testacc TESTS=TestAccUser_homeDirectoryMappings PKG=transfer
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/transfer/... -v -count 1 -parallel 20 -run='TestAccUser_homeDirectoryMappings'  -timeout 180m
=== RUN   TestAccUser_homeDirectoryMappings
--- PASS: TestAccUser_homeDirectoryMappings (233.59s)
PASS
ok      github.com/hashicorp/terraform-provider-aws/internal/service/transfer   233.643s

...

@github-actions
Copy link

Community Note

Voting for Prioritization

  • Please vote on this pull request by adding a 👍 reaction to the original post to help the community and maintainers prioritize this pull request.
  • Please see our prioritization guide for information on how we prioritize.
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.

For Submitters

  • Review the contribution guide relating to the type of change you are making to ensure all of the necessary steps have been taken.
  • For new resources and data sources, use skaff to generate scaffolding with comments detailing common expectations.
  • Whether or not the branch has been rebased will not impact prioritization, but doing so is always a welcome surprise.

@github-actions github-actions bot added size/M Managed by automation to categorize the size of a PR. needs-triage Waiting for first response or review from a maintainer. service/transfer Issues and PRs that pertain to the transfer service. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. labels Oct 31, 2022
@justinretzolk justinretzolk added bug Addresses a defect in current functionality. and removed needs-triage Waiting for first response or review from a maintainer. labels Nov 1, 2022
@github-actions github-actions bot added size/XL Managed by automation to categorize the size of a PR. documentation Introduces or discusses updates to documentation. tags Pertains to resource tagging. and removed size/M Managed by automation to categorize the size of a PR. labels Mar 2, 2023
Copy link
Contributor

@ewbankkit ewbankkit left a 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=TestAccTransfer_serial/User' PKG=transfer
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/transfer/... -v -count 1 -parallel 20  -run=TestAccTransfer_serial/User -timeout 180m
=== RUN   TestAccTransfer_serial
=== PAUSE TestAccTransfer_serial
=== CONT  TestAccTransfer_serial
=== RUN   TestAccTransfer_serial/User
=== RUN   TestAccTransfer_serial/User/UserNameValidation
=== RUN   TestAccTransfer_serial/User/basic
=== RUN   TestAccTransfer_serial/User/disappears
=== RUN   TestAccTransfer_serial/User/tags
=== RUN   TestAccTransfer_serial/User/HomeDirectoryMappings
=== RUN   TestAccTransfer_serial/User/ModifyWithOptions
=== RUN   TestAccTransfer_serial/User/Posix
--- PASS: TestAccTransfer_serial (1164.51s)
    --- PASS: TestAccTransfer_serial/User (1164.51s)
        --- PASS: TestAccTransfer_serial/User/UserNameValidation (16.07s)
        --- PASS: TestAccTransfer_serial/User/basic (190.77s)
        --- PASS: TestAccTransfer_serial/User/disappears (157.61s)
        --- PASS: TestAccTransfer_serial/User/tags (210.15s)
        --- PASS: TestAccTransfer_serial/User/HomeDirectoryMappings (201.15s)
        --- PASS: TestAccTransfer_serial/User/ModifyWithOptions (199.25s)
        --- PASS: TestAccTransfer_serial/User/Posix (162.45s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/transfer	1169.975s

@ewbankkit
Copy link
Contributor

@mtt88 Thanks for the contribution 🎉 👏.

@ewbankkit ewbankkit merged commit b90f42b into hashicorp:main Mar 2, 2023
@github-actions github-actions bot added this to the v4.57.0 milestone Mar 2, 2023
@github-actions
Copy link

github-actions bot commented Mar 3, 2023

This functionality has been released in v4.57.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!

@github-actions
Copy link

github-actions bot commented Apr 4, 2023

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.
If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Apr 4, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Addresses a defect in current functionality. documentation Introduces or discusses updates to documentation. service/transfer Issues and PRs that pertain to the transfer service. size/XL Managed by automation to categorize the size of a PR. tags Pertains to resource tagging. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants