Skip to main content

registries

Creates, updates, deletes, gets or lists a registries resource.

Overview

Nameregistries
TypeResource
Idaws.ecr_public.registries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aliasesarrayAn array of objects that represents the aliases for a public registry.
registry_arnstringThe Amazon Resource Name (ARN) of the public registry.
registry_idstringThe Amazon Web Services account ID that's associated with the registry. If you do not specify a registry, the default public registry is assumed. (pattern: <code>[0-9]{12}</code>)
registry_uristringThe URI of a public registry. The URI contains a universal prefix and the registry alias.
verifiedbooleanIndicates whether the account is a verified Amazon Web Services Marketplace vendor. If an account is verified, each public repository receives a verified account badge on the Amazon ECR Public Gallery.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_registriesselectregionReturns details for a public registry.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns details for a public registry.

SELECT
aliases,
registry_arn,
registry_id,
registry_uri,
verified
FROM aws.ecr_public.registries
WHERE region = '{{ region }}' -- required
;