1.0 KiB
1.0 KiB
page_title, subcategory, description
| page_title | subcategory | description |
|---|---|---|
| immich_person Resource - immich | Manages an Immich person. Note: Persons are usually created automatically by Immich facial recognition. This resource is used to update their details. |
immich_person (Resource)
Manages an Immich person. Note: Persons are usually created automatically by Immich facial recognition. This resource is used to update their details.
Example Usage
resource "immich_person" "example" {
id = "your-person-uuid"
name = "John Doe"
birth_date = "1990-01-01"
is_hidden = false
is_favorite = true
}
Schema
Required
id(String) Unique identifier for the person.
Optional
birth_date(String) Birth date of the person (ISO 8601).is_favorite(Boolean) Whether the person is marked as a favorite.is_hidden(Boolean) Whether the person is hidden from the UI.name(String) Name of the person.