Aikido List

Aikido List

Certified

List Aikido container repositories

Lists container repositories connected to Aikido and pages through every matching result. fetchType=STORE is recommended for large result sets: it streams results to internal storage instead of holding them all in memory or in the execution output.

yaml
type: io.kestra.plugin.aikido.containers.List

List every container repository

yaml
id: list_aikido_containers
namespace: company.security

tasks:
  - id: list_containers
    type: io.kestra.plugin.aikido.containers.List
    clientId: "{{ secret('AIKIDO_CLIENT_ID') }}"
    clientSecret: "{{ secret('AIKIDO_CLIENT_SECRET') }}"
    fetchType: FETCH
Properties

OAuth2 client ID

Client ID of an Aikido API client with the OAuth2 scopes required by the tasks and triggers being used (for example issues: read, repositories: write). Client credentials are created in the Aikido console under Settings > API access.

OAuth2 client secret

Client secret of the Aikido API client. Exchanged for a short-lived JWT Bearer token on first use (and transparently refreshed before it expires); never logged or included in error messages.

Defaulthttps://app.aikido.dev

Aikido API base URL

Base URL of the Aikido Security application for your account's region: https://app.aikido.dev (Europe, default), https://app.us.aikido.dev (United States), https://app.au.aikido.dev (Australia), or https://app.me.aikido.dev (Middle East). The OAuth2 token endpoint is derived from this same host, so a region override applies to both authentication and API calls.

DefaultFETCH
Possible Values
STOREFETCHFETCH_ONENONE

Fetch type

FETCH_ONE outputs the first matching container, FETCH outputs every matching container, STORE streams every matching container to internal storage and returns a URI. Defaults to FETCH.

Filter by container name

Filter by image tag

Default20

Page size

Internal pagination page size, from 10 to 100. Defaults to 20.

Reference (ref) of the pluginDefaults to apply to this task.

First fetched container

Populated only when fetchType=FETCH_ONE.

Definitions
cloud_idinteger

The ID of the connected cloud this container belongs to, if any

distrostring

Base image distro, if detected

idinteger

The container repository's ID in Aikido

is_activeboolean

Whether this container repository is active

last_scanned_atinteger

Unix timestamp (seconds) of the last scan, or -1 if never scanned

linked_code_repo_idinteger

ID of the code repository linked to this container, if any

namestring

The name of the container repository

providerstring

Where the container image is hosted

registry_idstring

The ID of the container registry

registry_namestring

The name of the container registry

tagstring

The image tag Aikido scans

Fetched containers

Populated only when fetchType=FETCH.

Definitions
cloud_idinteger

The ID of the connected cloud this container belongs to, if any

distrostring

Base image distro, if detected

idinteger

The container repository's ID in Aikido

is_activeboolean

Whether this container repository is active

last_scanned_atinteger

Unix timestamp (seconds) of the last scan, or -1 if never scanned

linked_code_repo_idinteger

ID of the code repository linked to this container, if any

namestring

The name of the container repository

providerstring

Where the container image is hosted

registry_idstring

The ID of the container registry

registry_namestring

The name of the container registry

tagstring

The image tag Aikido scans

Number of containers fetched

Formaturi

Stored data URI

Populated only when fetchType=STORE.