Aikido Snooze

Aikido Snooze

Certified

Snooze an Aikido issue group

Snoozes an issue group until a given point in time, optionally recording a reason. A snoozed issue group is excluded from the open issues feed until it re-opens.

yaml
type: io.kestra.plugin.aikido.issues.Snooze

Snooze a false-positive issue for 30 days

yaml
id: snooze_false_positive
namespace: company.security

inputs:
  - id: issue_group_id
    type: STRING

tasks:
  - id: snooze
    type: io.kestra.plugin.aikido.issues.Snooze
    clientId: "{{ secret('AIKIDO_CLIENT_ID') }}"
    clientSecret: "{{ secret('AIKIDO_CLIENT_SECRET') }}"
    issueGroupId: "{{ inputs.issue_group_id }}"
    until: "2026-12-31T00:00:00Z"
    reason: "False positive, confirmed by security team"
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.

Issue group ID

Snooze until

Point in time until which this issue group is snoozed. Must be in the future.

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.

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

Reason for snoozing

Number of individual issues snoozed as part of this issue group

Whether the snooze operation succeeded