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

data_source/aws_ecr_lifecycle_policy_document: adding new data source for ECR #6133

Closed

Conversation

slapula
Copy link
Contributor

@slapula slapula commented Oct 12, 2018

Closes #6212

In the spirit of aws_iam_policy_document, I tried my hand at doing the same thing for ECR lifecycle policy documents.

Changes proposed in this pull request:

  • Adds aws_ecr_lifecycle_policy_document data source

Output from acceptance testing:

$ make testacc TESTARGS='-run=TestAccAWSDataSourceEcrLifecyclePolicyDocument_basic'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./... -v -run=TestAccAWSDataSourceEcrLifecyclePolicyDocument_basic -timeout 120m
?   	github.com/terraform-providers/terraform-provider-aws	[no test files]
=== RUN   TestAccAWSDataSourceEcrLifecyclePolicyDocument_basic
--- PASS: TestAccAWSDataSourceEcrLifecyclePolicyDocument_basic (10.88s)
PASS
ok  	github.com/terraform-providers/terraform-provider-aws/aws	10.904s

@ghost ghost added size/XL Managed by automation to categorize the size of a PR. documentation Introduces or discusses updates to documentation. service/ecr Issues and PRs that pertain to the ecr service. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. labels Oct 12, 2018
@bflad
Copy link
Contributor

bflad commented Oct 19, 2018

Adding reference to #6212

@bflad bflad added the new-data-source Introduces a new data source. label Oct 19, 2018
@bflad
Copy link
Contributor

bflad commented Oct 19, 2018

I don't have time right now to give a full review of this PR, but it definitely seems like something we will be interested in implementing. 👍

Copy link
Contributor

@bflad bflad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @slapula 👋 Thanks for submitting this! Overall, I think this is off to a good start and this will make assembling these policies much easier (even if we don't support merging these day one)!

I left some initial feedback below. Please let us know if you have any questions or do not have time to implement these items. 😄

website/docs/d/ecr_lifecycle_policy_document.html.markdown Outdated Show resolved Hide resolved
aws/data_source_aws_ecr_lifecycle_policy_document_test.go Outdated Show resolved Hide resolved
aws/data_source_aws_ecr_lifecycle_policy_document_test.go Outdated Show resolved Hide resolved
"github.com/hashicorp/terraform/terraform"
)

func TestAccAWSDataSourceEcrLifecyclePolicyDocument_basic(t *testing.T) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to see additional testing that covers:

  • Setting other attributes or omitting optional attributes
  • Multiple rules

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just added a couple more tests: one that omits an optional attribute (descriptions) and one that generates a two rule policy.

Type: schema.TypeString,
Required: false,
Optional: true,
ValidateFunc: validation.StringInSlice([]string{"days"}, false),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Example B of Filtering All Images uses hour as a count unit: https://docs.aws.amazon.com/AmazonECR/latest/userguide/lifecycle_policy_examples.html#lp_example_allimages

        {
            "rulePriority": 2,
            "description": "Rule 2",
            "selection": {
                "tagStatus": "untagged",
                "countType": "sinceImagePushed",
                "countUnit": "hours",
                "countNumber": 1
            },
            "action": {
                "type": "expire"
            }
        },

website/docs/d/ecr_lifecycle_policy_document.html.markdown Outdated Show resolved Hide resolved
website/docs/d/ecr_lifecycle_policy_document.html.markdown Outdated Show resolved Hide resolved
aws/data_source_aws_ecr_lifecycle_policy_document.go Outdated Show resolved Hide resolved
aws/data_source_aws_ecr_lifecycle_policy_document.go Outdated Show resolved Hide resolved
aws/data_source_aws_ecr_lifecycle_policy_document.go Outdated Show resolved Hide resolved
@bflad bflad added the waiting-response Maintainers are waiting on response from community or contributor. label Oct 31, 2018
@bflad
Copy link
Contributor

bflad commented Nov 13, 2018

Same here -- just please let us know if you don't have time to work on addressing the feedback.

@ghost ghost added the provider Pertains to the provider itself, rather than any interaction with AWS. label Nov 25, 2018
@bflad bflad removed the waiting-response Maintainers are waiting on response from community or contributor. label Nov 25, 2018
@jufemaiz
Copy link
Contributor

This looks great! What's the likelihood of it being merged?

@sdouche
Copy link

sdouche commented Mar 7, 2020

Hi. This data source is useful to remove a lot of lines in ECR definitions.

@jufemaiz
Copy link
Contributor

Merge conflicts :sadpand:

@nomeelnoj
Copy link

Any update on this? This would also really help us.

@TechIsCool
Copy link

Would really be nice to not have to use JSON to handle these when implementing modules.

@teamterraform
Copy link

Notification of Recent and Upcoming Changes to Contributions

Thank you for this contribution! There have been a few recent development changes that affect this pull request. We apologize for the inconvenience, especially if there have been long review delays up until now. Please note that this is automated message from an unmonitored account. See the FAQ for additional information on the maintainer team and review prioritization.

If you are unable to complete these updates, please leave a comment for the community and maintainers so someone can potentially continue the work. The maintainers will encourage other contributors to use the existing contribution as the base for additional changes as appropriate. Otherwise, contributions that do not receive updated code or comments from the original contributor may be closed in the future so the maintainers can focus on active items.

For the most up to date information about Terraform AWS Provider development, see the Contributing Guide. Additional technical debt changes can be tracked with the technical-debt label on issues.

As part of updating a pull request with these changes, the most current unit testing and linting will run. These may report issues that were not previously reported.

Action Required: Terraform 0.12 Syntax

Reference: #8950
Reference: #14417

Version 3 and later of the Terraform AWS Provider, which all existing contributions would potentially be added, only supports Terraform 0.12 and later. Certain syntax elements of Terraform 0.11 and earlier show deprecation warnings during runs with Terraform 0.12. Documentation and test configurations, such as those including deprecated string interpolations (some_attribute = "${aws_service_thing.example.id}") should be updated to the newer syntax (some_attribute = aws_service_thing.example.id). Contribution testing will automatically fail on older syntax in the near future. Please see the referenced issues for additional information.

Action Required: Terraform Plugin SDK Version 2

Reference: #14551

The Terraform AWS Provider has been upgraded to the latest version of the Terraform Plugin SDK. Generally, most changes to contributions should only involve updating Go import paths in source code files. Please see the referenced issue for additional information.

Action Required: Removal of website/aws.erb File

Reference: #14712

Any changes to the website/aws.erb file are no longer necessary and should be removed from this contribution to prevent merge issues in the near future when the file is removed from the repository. Please see the referenced issue for additional information.

Upcoming Change of Git Branch Naming

Reference: #14292

Development environments will need their upstream Git branch updated from master to main in the near future. Please see the referenced issue for additional information and scheduling.

Upcoming Change of GitHub Organization

Reference: #14715

This repository will be migrating from https://github.com/terraform-providers/terraform-provider-aws to https://github.com/hashicorp/terraform-provider-aws. No practitioner or developer action is anticipated and most GitHub functionality will automatically redirect to the new location. Go import paths including terraform-providers can remain for now. Please see the referenced issue for additional information and scheduling.

@duncanwraight
Copy link

I appreciate it's a small part of Terraform but I'd imagine most organisations will want to use this with ECR... and most organisations using AWS Terraform will likely need ECR!

Could this please be merged?

Base automatically changed from master to main January 23, 2021 00:55
@breathingdust breathingdust requested a review from a team as a code owner January 23, 2021 00:55
@c-ameron
Copy link

Hello, any update on this? Thanks :)

@zhelding
Copy link
Contributor

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 aws directory to a large number of separate directories in internal/service, each corresponding to a particular AWS service. This separation of code has also allowed for us to simplify the names of underlying functions -- while still avoiding namespace collisions.

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.

@breathingdust breathingdust added the prioritized Part of the maintainer teams immediate focus. To be addressed within the current quarter. label Jul 26, 2023
@Luis-3M
Copy link

Luis-3M commented Jan 8, 2024

This is powerful - managing it via a JSON is a mess and very error-prone.
When are we aiming to release it ?

@ewbankkit
Copy link
Contributor

@slapula Thanks for the contribution 🎉 👏.
This work has been rolled into #36493.

@slapula
Copy link
Contributor Author

slapula commented Mar 29, 2024

wow I forgot this was still open! Thanks for bringing this across the finish line @ewbankkit

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 Apr 29, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
documentation Introduces or discusses updates to documentation. new-data-source Introduces a new data source. prioritized Part of the maintainer teams immediate focus. To be addressed within the current quarter. provider Pertains to the provider itself, rather than any interaction with AWS. service/ecr Issues and PRs that pertain to the ecr service. size/XL 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.

More than 2 ECR lifecycle policies can't be defined for one ECR repository