Skip to content

Latest commit

 

History

History
58 lines (42 loc) · 1.37 KB

File metadata and controls

58 lines (42 loc) · 1.37 KB
page_title seerr_plex_settings Resource - seerr
subcategory
description Manage Seerr Plex settings via /api/v1/settings/plex.

seerr_plex_settings (Resource)

Manage Seerr Plex settings via /api/v1/settings/plex.

Example Usage

resource "seerr_plex_settings" "main" {
  ip      = "192.168.1.50"
  port    = 32400
  use_ssl = true
}

Schema

Required

  • ip (String) The IP address or hostname of the Plex server.
  • port (Number) The port of the Plex server.

Optional

  • use_ssl (Boolean) Whether to use SSL for the connection.

Read-Only

  • id (String) The ID of this resource.
  • name (String) The name of the Plex server.
  • response_json (String) Raw JSON response body from the latest operation.
  • status_code (Number) HTTP status code from the latest operation.

Import

Import is supported using the following syntax:

The terraform import command can be used, for example:

# In Terraform 1.5.0 and later, use an import block to import seerr_plex_settings. For example:
#
# import {
#   to = seerr_plex_settings.example
#   id = "plex"
# }

# Otherwise, use the terraform import command:
terraform import seerr_plex_settings.example plex