dtz_container_registry

last updated: 2025-07-09

The dtz_container_registry data source allows you to retrieve information about the container registry from the DownToZero.cloud service.

Example Usage

data "dtz_container_registry" "example" {
}

output "registry_url" {
  value = data.dtz_container_registry.example.url
}

output "image_count" {
  value = data.dtz_container_registry.example.image_count
}

Schema

Read-Only

  • url (String) The URL of the container registry server.
  • image_count (Int64) The number of images in the container registry.

Terraform Docs

Github Sources