UNPKG

@maienm/pulumi-prowlarr

Version:

A Pulumi package for creating and managing Prowlarr resources. Based on terraform-provider-prowlarr: version v2.3.0

15 lines (14 loc) 749 B
/** * API key for Prowlarr authentication. Can be specified via the `PROWLARR_API_KEY` environment variable. */ export declare const apiKey: string | undefined; /** * Token for token-based authentication with Prowlarr. This is an alternative to using an API key. Set this via the * `PROWLARR_AUTHORIZATION` environment variable. One of `authorization` or `apiKey` must be provided, but not both. */ export declare const authorization: string | undefined; /** * Full Prowlarr URL with protocol and port (e.g. `https://test.prowlarr.com:9696`). You should **NOT** supply any path * (`/api`), the SDK will use the appropriate paths. Can be specified via the `PROWLARR_URL` environment variable. */ export declare const url: string | undefined;