Skip to content

Commit 85418e0

Browse files
authored
fix: use correct description for the trigger_incident attribute (#318)
1 parent 053f742 commit 85418e0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

checkly/attribute_trigger_incident.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
)
77

88
var triggerIncidentAttributeSchema = &schema.Schema{
9-
Description: "Set up HTTP basic authentication (username & password).",
9+
Description: "Create and resolve an incident based on the alert configuration. Useful for status page automation.",
1010
Type: schema.TypeSet,
1111
MaxItems: 1,
1212
Optional: true,

docs/resources/check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ resource "checkly_check" "example_check" {
222222
- `ssl_check_domain` (String) A valid fully qualified domain name (FQDN) to check its SSL certificate.
223223
- `tags` (Set of String) A list of tags for organizing and filtering checks.
224224
- `teardown_snippet_id` (Number) An ID reference to a snippet to use in the teardown phase of an API check.
225-
- `trigger_incident` (Block Set, Max: 1) Set up HTTP basic authentication (username & password). (see [below for nested schema](#nestedblock--trigger_incident))
225+
- `trigger_incident` (Block Set, Max: 1) Create and resolve an incident based on the alert configuration. Useful for status page automation. (see [below for nested schema](#nestedblock--trigger_incident))
226226
- `use_global_alert_settings` (Boolean) When true, the account level alert settings will be used, not the alert setting defined on this check.
227227

228228
### Read-Only

docs/resources/heartbeat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ resource "checkly_heartbeat" "example-heartbeat" {
4747
- `alert_settings` (Block List, Max: 1) (see [below for nested schema](#nestedblock--alert_settings))
4848
- `muted` (Boolean) Determines if any notifications will be sent out when a check fails/degrades/recovers.
4949
- `tags` (Set of String) A list of tags for organizing and filtering checks.
50-
- `trigger_incident` (Block Set, Max: 1) Set up HTTP basic authentication (username & password). (see [below for nested schema](#nestedblock--trigger_incident))
50+
- `trigger_incident` (Block Set, Max: 1) Create and resolve an incident based on the alert configuration. Useful for status page automation. (see [below for nested schema](#nestedblock--trigger_incident))
5151
- `use_global_alert_settings` (Boolean) When true, the account level alert settings will be used, not the alert setting defined on this check.
5252

5353
### Read-Only

docs/resources/heartbeat_monitor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ resource "checkly_heartbeat_monitor" "example-heartbeat-monitor" {
4141
- `alert_settings` (Block List, Max: 1) (see [below for nested schema](#nestedblock--alert_settings))
4242
- `muted` (Boolean) Determines if any notifications will be sent out when a check fails/degrades/recovers.
4343
- `tags` (Set of String) A list of tags for organizing and filtering checks.
44-
- `trigger_incident` (Block Set, Max: 1) Set up HTTP basic authentication (username & password). (see [below for nested schema](#nestedblock--trigger_incident))
44+
- `trigger_incident` (Block Set, Max: 1) Create and resolve an incident based on the alert configuration. Useful for status page automation. (see [below for nested schema](#nestedblock--trigger_incident))
4545
- `use_global_alert_settings` (Boolean) When true, the account level alert settings will be used, not the alert setting defined on this check.
4646

4747
### Read-Only

docs/resources/tcp_check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ resource "checkly_tcp_check" "example-tcp-check-2" {
121121
- `runtime_id` (String) The ID of the runtime to use for this check.
122122
- `should_fail` (Boolean) Allows to invert the behaviour of when a check is considered to fail.
123123
- `tags` (Set of String) A list of tags for organizing and filtering checks.
124-
- `trigger_incident` (Block Set, Max: 1) Set up HTTP basic authentication (username & password). (see [below for nested schema](#nestedblock--trigger_incident))
124+
- `trigger_incident` (Block Set, Max: 1) Create and resolve an incident based on the alert configuration. Useful for status page automation. (see [below for nested schema](#nestedblock--trigger_incident))
125125
- `use_global_alert_settings` (Boolean) When true, the account level alert settings will be used, not the alert setting defined on this check.
126126

127127
### Read-Only

docs/resources/tcp_monitor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ resource "checkly_tcp_monitor" "example-tcp-monitor-2" {
115115
- `runtime_id` (String) The ID of the runtime to use for this check.
116116
- `should_fail` (Boolean) Allows to invert the behaviour of when a check is considered to fail.
117117
- `tags` (Set of String) A list of tags for organizing and filtering checks.
118-
- `trigger_incident` (Block Set, Max: 1) Set up HTTP basic authentication (username & password). (see [below for nested schema](#nestedblock--trigger_incident))
118+
- `trigger_incident` (Block Set, Max: 1) Create and resolve an incident based on the alert configuration. Useful for status page automation. (see [below for nested schema](#nestedblock--trigger_incident))
119119
- `use_global_alert_settings` (Boolean) When true, the account level alert settings will be used, not the alert setting defined on this check.
120120

121121
### Read-Only

docs/resources/url_monitor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ resource "checkly_url_monitor" "example-url-monitor" {
6161
- `run_parallel` (Boolean) Determines whether the monitor should run on all selected locations in parallel or round-robin. (Default `false`).
6262
- `should_fail` (Boolean) Allows to invert the behaviour of when the monitor is considered to fail. (Default `false`).
6363
- `tags` (Set of String) A list of tags for organizing and filtering checks and monitors.
64-
- `trigger_incident` (Block Set, Max: 1) Set up HTTP basic authentication (username & password). (see [below for nested schema](#nestedblock--trigger_incident))
64+
- `trigger_incident` (Block Set, Max: 1) Create and resolve an incident based on the alert configuration. Useful for status page automation. (see [below for nested schema](#nestedblock--trigger_incident))
6565
- `use_global_alert_settings` (Boolean) When true, the account level alert settings will be used, not the alert setting defined on this monitor. (Default `true`).
6666

6767
### Read-Only

0 commit comments

Comments
 (0)