steampipe plugin install theapsgroup/gitlab

Table: gitlab_project_container_registry

The gitlab_project_container_registry table can be used to query information about container registries for a specific project.

However, you must specify a project_id in the where or join clause.

Examples

List all container registries for a specific project

select
id,
name,
path,
location,
created_at,
cleanup_policy_started_at
from
gitlab_project_container_registry
where
project_id = 45453535;

Schema for gitlab_project_container_registry

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
cleanup_policy_started_attimestamp with time zoneTimestamp when the cleanup policy was started.
created_attimestamp with time zoneTimestamp when the container registry was created.
idbigintThe ID of the container registry.
locationtextThe location (full path) of the container registry.
nametextThe name of the container registry.
pathtextThe path of the container registry.
project_idbigint=The ID of the project - link to `gitlab_project.id