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

Add the resolveDockerTagsByTimestamp argument to virtual repository resource #70

Open
AlexanderRMcNeill opened this issue Feb 4, 2020 · 1 comment

Comments

@AlexanderRMcNeill
Copy link
Contributor

AlexanderRMcNeill commented Feb 4, 2020

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Add the resolveDockerTagsByTimestamp argument to virtual repository resource.

As of Artifactory version 6.12 it now supports the ability to resolve images with the same docker tags by timestamp. See the release notes here.

New or Affected Resource(s)

  • artifactory_virtual_repository

Potential Terraform Configuration

resource "artifactory_local_repository" "bar" {
  key = "bar"
  package_type = "docker"
}

resource "artifactory_local_repository" "baz" {
  key = "baz"
  package_type = "docker"
}

resource "artifactory_virtual_repository" "docker" {
  key          = "foo"
  package_type = "docker"
  resolve_docker_tags_by_timestamp = true
  repositories = [
    "${artifactory_local_repository.bar.key}", 
    "${artifactory_local_repository.baz.key}"
  ]
}

References

@AlexanderRMcNeill
Copy link
Contributor Author

I will have a go at adding this myself

jlrgraham23 pushed a commit to jlrgraham23/terraform-provider-artifactory that referenced this issue Apr 6, 2021
…lidation

atlassianGH-69 - Update validation function to include conda. Also, share it a…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant