Files

1.1 KiB

page_title, subcategory, description
page_title subcategory description
immich_admin_notification Resource - immich Sends a system-wide notification as an administrator. Note: This resource triggers a notification upon creation. Deleting the resource will attempt to remove the notification.

immich_admin_notification (Resource)

Sends a system-wide notification as an administrator. Note: This resource triggers a notification upon creation. Deleting the resource will attempt to remove the notification.

Example Usage

resource "immich_admin_notification" "announcement" {
  type        = "SYSTEM"
  level       = "INFO"
  title       = "Maintenance Scheduled"
  description = "Immich will be down for maintenance on Sunday at 2 AM UTC."
}

Schema

Required

  • description (String) Notification message body.
  • level (String) Severity level (INFO, WARNING, ERROR).
  • title (String) Notification title.
  • type (String) Type of notification (e.g. SYSTEM).

Read-Only

  • id (String) Unique identifier for the created notification.