generated from hashicorp/terraform-provider-scaffolding-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
476 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "radarr_indexer_nyaa Resource - terraform-provider-radarr" | ||
subcategory: "Indexers" | ||
description: |- | ||
Indexer Nyaa resource. | ||
For more information refer to Indexer https://wiki.servarr.com/radarr/settings#indexers and Nyaa https://wiki.servarr.com/radarr/supported#nyaa. | ||
--- | ||
|
||
# radarr_indexer_nyaa (Resource) | ||
|
||
<!-- subcategory:Indexers -->Indexer Nyaa resource. | ||
For more information refer to [Indexer](https://wiki.servarr.com/radarr/settings#indexers) and [Nyaa](https://wiki.servarr.com/radarr/supported#nyaa). | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "radarr_indexer_nyaa" "example" { | ||
enable_automatic_search = true | ||
name = "Example" | ||
base_url = "https://nyaa.io" | ||
additional_parameters = "&cats=1_0&filter=1" | ||
minimum_seeders = 1 | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `base_url` (String) Base URL. | ||
- `name` (String) IndexerNyaa name. | ||
|
||
### Optional | ||
|
||
- `additional_parameters` (String) Additional parameters. | ||
- `download_client_id` (Number) Download client ID. | ||
- `enable_automatic_search` (Boolean) Enable automatic search flag. | ||
- `enable_interactive_search` (Boolean) Enable interactive search flag. | ||
- `enable_rss` (Boolean) Enable RSS flag. | ||
- `minimum_seeders` (Number) Minimum seeders. | ||
- `multi_languages` (Set of Number) Languages list. | ||
- `priority` (Number) Priority. | ||
- `required_flags` (Set of Number) Flag list. | ||
- `seed_ratio` (Number) Seed ratio. | ||
- `seed_time` (Number) Seed time. | ||
- `tags` (Set of Number) List of associated tags. | ||
|
||
### Read-Only | ||
|
||
- `id` (Number) IndexerNyaa ID. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
# import using the API/UI ID | ||
terraform import radarr_indexer_nyaa.example 1 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# import using the API/UI ID | ||
terraform import radarr_indexer_nyaa.example 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
resource "radarr_indexer_nyaa" "example" { | ||
enable_automatic_search = true | ||
name = "Example" | ||
base_url = "https://nyaa.io" | ||
additional_parameters = "&cats=1_0&filter=1" | ||
minimum_seeders = 1 | ||
} |
Oops, something went wrong.