-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
Add tags
and tags_all
argument to aws_ecrpublic_repository
#26057
Add tags
and tags_all
argument to aws_ecrpublic_repository
#26057
Conversation
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 @yktakaha4 👋
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 CONTRIBUTING 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.
LGTM 🚀.
% AWS_DEFAULT_REGION=us-east-1 make testacc TESTARGS='-run=TestAccECRPublicRepository_' PKG=ecrpublic ACCTEST_PARALLELISM=1
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ecrpublic/... -v -count 1 -parallel 1 -run=TestAccECRPublicRepository_ -timeout 180m
=== RUN TestAccECRPublicRepository_basic
=== PAUSE TestAccECRPublicRepository_basic
=== RUN TestAccECRPublicRepository_tags
=== PAUSE TestAccECRPublicRepository_tags
=== RUN TestAccECRPublicRepository_CatalogData_aboutText
=== PAUSE TestAccECRPublicRepository_CatalogData_aboutText
=== RUN TestAccECRPublicRepository_CatalogData_architectures
=== PAUSE TestAccECRPublicRepository_CatalogData_architectures
=== RUN TestAccECRPublicRepository_CatalogData_description
=== PAUSE TestAccECRPublicRepository_CatalogData_description
=== RUN TestAccECRPublicRepository_CatalogData_operatingSystems
=== PAUSE TestAccECRPublicRepository_CatalogData_operatingSystems
=== RUN TestAccECRPublicRepository_CatalogData_usageText
=== PAUSE TestAccECRPublicRepository_CatalogData_usageText
=== RUN TestAccECRPublicRepository_CatalogData_logoImageBlob
=== PAUSE TestAccECRPublicRepository_CatalogData_logoImageBlob
=== RUN TestAccECRPublicRepository_Basic_forceDestroy
=== PAUSE TestAccECRPublicRepository_Basic_forceDestroy
=== RUN TestAccECRPublicRepository_disappears
=== PAUSE TestAccECRPublicRepository_disappears
=== CONT TestAccECRPublicRepository_basic
--- PASS: TestAccECRPublicRepository_basic (12.66s)
=== CONT TestAccECRPublicRepository_CatalogData_operatingSystems
--- PASS: TestAccECRPublicRepository_CatalogData_operatingSystems (16.14s)
=== CONT TestAccECRPublicRepository_disappears
--- PASS: TestAccECRPublicRepository_disappears (6.80s)
=== CONT TestAccECRPublicRepository_Basic_forceDestroy
--- PASS: TestAccECRPublicRepository_Basic_forceDestroy (9.93s)
=== CONT TestAccECRPublicRepository_CatalogData_logoImageBlob
--- PASS: TestAccECRPublicRepository_CatalogData_logoImageBlob (9.82s)
=== CONT TestAccECRPublicRepository_CatalogData_usageText
--- PASS: TestAccECRPublicRepository_CatalogData_usageText (16.16s)
=== CONT TestAccECRPublicRepository_CatalogData_architectures
--- PASS: TestAccECRPublicRepository_CatalogData_architectures (18.00s)
=== CONT TestAccECRPublicRepository_CatalogData_description
--- PASS: TestAccECRPublicRepository_CatalogData_description (16.20s)
=== CONT TestAccECRPublicRepository_CatalogData_aboutText
--- PASS: TestAccECRPublicRepository_CatalogData_aboutText (16.95s)
=== CONT TestAccECRPublicRepository_tags
--- PASS: TestAccECRPublicRepository_tags (22.74s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/ecrpublic 149.263s
@yktakaha4 Thanks for the contribution 🎉 👏. |
This functionality has been released in v4.25.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
Relates OR Closes #0000
Thanks for the great library!
I added the
tags
attribute toaws_ecrpublic_repository
.As this is my first time sending a PR to this repository, please let me know if I am not following the rules.
Implemented with reference to the contents of the ECR.
terraform-provider-aws/internal/service/ecr/repository_test.go
Lines 52 to 83 in d1e62c5
Output from acceptance testing: