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

fix: Remove extra closing bracket in Tags annotation for aws_ecr_repository data source #38272

Conversation

acwwat
Copy link
Contributor

@acwwat acwwat commented Jul 7, 2024

Description

This PR is to fix the issue where tags are not set/loaded by the aws_ecr_repository data source because of an extra ) in the @Tags annotation comment that caused bad code generation.

The original test case is also not catching the issue since it's comparing the tags map attribute between the resource and data source directly. It seems to be related to how the TestCheckResourceAttrPair() function works, so instead I've changed it to compare the map lengths instead for more proper validation (short of comparing the two tags direcrtly).

Relations

Closes #38155

References

n/a

Output from Acceptance Testing

$ make testacc TESTS=TestAccECRRepositoryDataSource_ PKG=ecr
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.4 test ./internal/service/ecr/... -v -count 1 -parallel 20 -run='TestAccECRRepositoryDataSource_'  -timeout 360m
=== RUN   TestAccECRRepositoryDataSource_basic
=== PAUSE TestAccECRRepositoryDataSource_basic
=== RUN   TestAccECRRepositoryDataSource_encryption
=== PAUSE TestAccECRRepositoryDataSource_encryption
=== RUN   TestAccECRRepositoryDataSource_nonExistent
=== PAUSE TestAccECRRepositoryDataSource_nonExistent
=== CONT  TestAccECRRepositoryDataSource_basic
=== CONT  TestAccECRRepositoryDataSource_nonExistent
=== CONT  TestAccECRRepositoryDataSource_encryption
--- PASS: TestAccECRRepositoryDataSource_nonExistent (3.97s)
--- PASS: TestAccECRRepositoryDataSource_basic (18.75s)
--- PASS: TestAccECRRepositoryDataSource_encryption (21.84s)
PASS
ok      github.com/hashicorp/terraform-provider-aws/internal/service/ecr        22.071s

$

@acwwat acwwat requested a review from a team as a code owner July 7, 2024 08:42
Copy link

github-actions bot commented Jul 7, 2024

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/XS Managed by automation to categorize the size of a PR. service/ecr Issues and PRs that pertain to the ecr service. generators Relates to code generators. labels Jul 7, 2024
@terraform-aws-provider terraform-aws-provider bot added needs-triage Waiting for first response or review from a maintainer. external-maintainer Contribution from a trusted external contributor. labels Jul 7, 2024
@acwwat acwwat force-pushed the b-aws_ecr_repository-fix_data_source_tags_attr branch from 598b7a4 to 8bba129 Compare July 7, 2024 08:46
@acwwat acwwat changed the title fix: Remove extra closing brackage in Tags annotation for aws_ecr_repository data source fix: Remove extra closing bracket in Tags annotation for aws_ecr_repository data source Jul 7, 2024
@acwwat acwwat force-pushed the b-aws_ecr_repository-fix_data_source_tags_attr branch from 8bba129 to 79f185f Compare July 7, 2024 17:55
@github-actions github-actions bot added the tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. label Jul 7, 2024
@ewbankkit ewbankkit removed the needs-triage Waiting for first response or review from a maintainer. label Jul 8, 2024
@ewbankkit ewbankkit self-assigned this Jul 8, 2024
@terraform-aws-provider terraform-aws-provider bot added the prioritized Part of the maintainer teams immediate focus. To be addressed within the current quarter. label Jul 8, 2024
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=TestAccECRRepositoryDataSource_' PKG=ecr
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.4 test ./internal/service/ecr/... -v -count 1 -parallel 20  -run=TestAccECRRepositoryDataSource_ -timeout 360m
=== RUN   TestAccECRRepositoryDataSource_basic
=== PAUSE TestAccECRRepositoryDataSource_basic
=== RUN   TestAccECRRepositoryDataSource_encryption
=== PAUSE TestAccECRRepositoryDataSource_encryption
=== RUN   TestAccECRRepositoryDataSource_nonExistent
=== PAUSE TestAccECRRepositoryDataSource_nonExistent
=== CONT  TestAccECRRepositoryDataSource_basic
=== CONT  TestAccECRRepositoryDataSource_nonExistent
=== CONT  TestAccECRRepositoryDataSource_encryption
--- PASS: TestAccECRRepositoryDataSource_nonExistent (2.88s)
--- PASS: TestAccECRRepositoryDataSource_basic (11.90s)
--- PASS: TestAccECRRepositoryDataSource_encryption (13.77s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/ecr	18.609s

@ewbankkit
Copy link
Contributor

@acwwat Thanks for the contribution 🎉 👏.

@ewbankkit ewbankkit merged commit d4775b0 into hashicorp:main Jul 8, 2024
74 checks passed
@github-actions github-actions bot added this to the v5.58.0 milestone Jul 8, 2024
@github-actions github-actions bot removed the prioritized Part of the maintainer teams immediate focus. To be addressed within the current quarter. label Jul 12, 2024
Copy link

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

@acwwat acwwat deleted the b-aws_ecr_repository-fix_data_source_tags_attr branch July 19, 2024 02:49
Copy link

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 Aug 21, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
external-maintainer Contribution from a trusted external contributor. generators Relates to code generators. service/ecr Issues and PRs that pertain to the ecr service. size/XS Managed by automation to categorize the size of a PR. 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.

[Bug]: aws_ecr_repository data source not fetching tags
2 participants