terraform-provider-docker/docs/data-sources/registry_image_manifests.md
Martin 62970c2d5a
feat: Implement registry_image_manifests data source (#714)
* feat: Implement registry_image_manifests data source

* fix: Golint errors
2025-04-29 06:19:37 +02:00

1.5 KiB

page_title subcategory description
docker_registry_image_manifests Data Source - terraform-provider-docker Reads the image metadata for each manifest in a Docker multi-arch image from a Docker Registry.

docker_registry_image_manifests (Data Source)

Reads the image metadata for each manifest in a Docker multi-arch image from a Docker Registry.

Schema

Required

  • name (String) The name of the Docker image, including any tags. e.g. alpine:latest

Optional

  • auth_config (Block List, Max: 1) Authentication configuration for the Docker registry. It is only used for this resource. (see below for nested schema)
  • insecure_skip_verify (Boolean) If true, the verification of TLS certificates of the server/registry is disabled. Defaults to false

Read-Only

  • id (String) The ID of this resource.
  • manifests (Set of Object) The metadata for each manifest in the image (see below for nested schema)

Nested Schema for auth_config

Required:

  • address (String) The address of the Docker registry.
  • password (String, Sensitive) The password for the Docker registry.
  • username (String) The username for the Docker registry.

Nested Schema for manifests

Read-Only:

  • architecture (String)
  • media_type (String)
  • os (String)
  • sha256_digest (String)