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
13 changed files
with
643 additions
and
3 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
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
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
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,81 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "radarr_notification_apprise Resource - terraform-provider-radarr" | ||
subcategory: "Notifications" | ||
description: |- | ||
Notification Apprise resource. | ||
For more information refer to Notification https://wiki.servarr.com/radarr/settings#connect and Apprise https://wiki.servarr.com/radarr/supported#apprise. | ||
--- | ||
|
||
# radarr_notification_apprise (Resource) | ||
|
||
<!-- subcategory:Notifications -->Notification Apprise resource. | ||
For more information refer to [Notification](https://wiki.servarr.com/radarr/settings#connect) and [Apprise](https://wiki.servarr.com/radarr/supported#apprise). | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "radarr_notification_apprise" "example" { | ||
on_grab = false | ||
on_download = true | ||
on_upgrade = true | ||
on_movie_added = false | ||
on_movie_delete = false | ||
on_movie_file_delete = false | ||
on_movie_file_delete_for_upgrade = true | ||
on_health_issue = false | ||
on_application_update = false | ||
include_health_warnings = false | ||
name = "Example" | ||
notification_type = 1 | ||
server_url = "https://apprise.go" | ||
auth_username = "User" | ||
auth_password = "Password" | ||
field_tags = ["warning", "skull"] | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) NotificationBoxcar name. | ||
- `on_movie_delete` (Boolean) On movie delete flag. | ||
- `server_url` (String) Server URL. | ||
|
||
### Optional | ||
|
||
- `auth_password` (String, Sensitive) Password. | ||
- `auth_username` (String) Username. | ||
- `configuration_key` (String, Sensitive) Configuration key. | ||
- `field_tags` (Set of String) Tags and emojis. | ||
- `include_health_warnings` (Boolean) Include health warnings. | ||
- `notification_type` (Number) Notification type. `0` Info, `1` Success, `2` Warning, `3` Failure. | ||
- `on_application_update` (Boolean) On application update flag. | ||
- `on_download` (Boolean) On download flag. | ||
- `on_grab` (Boolean) On grab flag. | ||
- `on_health_issue` (Boolean) On health issue flag. | ||
- `on_health_restored` (Boolean) On health restored flag. | ||
- `on_manual_interaction_required` (Boolean) On manual interaction required flag. | ||
- `on_movie_added` (Boolean) On movie added flag. | ||
- `on_movie_file_delete` (Boolean) On movie file delete flag. | ||
- `on_movie_file_delete_for_upgrade` (Boolean) On movie file delete for upgrade flag. | ||
- `on_upgrade` (Boolean) On upgrade flag. | ||
- `stateless_urls` (String) Stateless URLs. | ||
- `tags` (Set of Number) List of associated tags. | ||
|
||
### Read-Only | ||
|
||
- `id` (Number) Notification ID. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
# import using the API/UI ID | ||
terraform import radarr_notification_apprise.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_notification_apprise.example 1 |
20 changes: 20 additions & 0 deletions
20
examples/resources/radarr_notification_apprise/resource.tf
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,20 @@ | ||
resource "radarr_notification_apprise" "example" { | ||
on_grab = false | ||
on_download = true | ||
on_upgrade = true | ||
on_movie_added = false | ||
on_movie_delete = false | ||
on_movie_file_delete = false | ||
on_movie_file_delete_for_upgrade = true | ||
on_health_issue = false | ||
on_application_update = false | ||
|
||
include_health_warnings = false | ||
name = "Example" | ||
|
||
notification_type = 1 | ||
server_url = "https://apprise.go" | ||
auth_username = "User" | ||
auth_password = "Password" | ||
field_tags = ["warning", "skull"] | ||
} |
Oops, something went wrong.