terraform-provider-google/website/docs/d/google_container_registry_repository.html.markdown
Paddy b36050cb0c
Merge pull request #2200 from smatyas/patch-1
typo fix in google_container_registry_repository.html.markdown
2018-10-11 23:29:11 -07:00

1.3 KiB

layout page_title sidebar_current description
google Google: google_container_registry_repository docs-google-datasource-container-repo Get URLs for a given project's container registry repository.

google_container_registry_repository

This data source fetches the project name, and provides the appropriate URLs to use for container registry for this project.

The URLs are computed entirely offline - as long as the project exists, they will be valid, but this data source does not contact Google Container Registry (GCR) at any point.

Example Usage

data "google_container_registry_repository" "foo" {}

output "gcr_location" {
    value = "${data.google_container_registry_repository.foo.repository_url}"
}

Argument Reference

  • project: (Optional) The project ID that this repository is attached to. If not provided, provider project will be used instead.
  • region: (Optional) The GCR region to use. As of this writing, one of asia, eu, and us. See the documentation for additional information.

Attributes Reference

In addition to the arguments listed above, this data source exports:

  • repository_url: The URL at which the repository can be accessed.