Skip to content

Commit

Permalink
docs: remove double_check and use correct provider version (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
clample committed Sep 1, 2023
1 parent 6538d08 commit 2538b81
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 14 deletions.
3 changes: 1 addition & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ terraform {
required_providers {
checkly = {
source = "checkly/checkly"
version = "1.6.10"
version = "1.7.1"
}
}
}
Expand All @@ -55,7 +55,6 @@ resource "checkly_check" "example_check" {
activated = true
should_fail = false
frequency = 10
double_check = true
use_global_alert_settings = true
locations = [
Expand Down
4 changes: 0 additions & 4 deletions docs/resources/check.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ resource "checkly_check" "example_check" {
activated = true
should_fail = false
frequency = 1
double_check = true
use_global_alert_settings = true
locations = [
Expand All @@ -46,7 +45,6 @@ resource "checkly_check" "example_check_2" {
activated = true
should_fail = true
frequency = 1
double_check = true
degraded_response_time = 5000
max_response_time = 10000
Expand Down Expand Up @@ -117,7 +115,6 @@ resource "checkly_check" "browser_check_1" {
activated = true
should_fail = false
frequency = 10
double_check = true
use_global_alert_settings = true
locations = [
"us-west-1"
Expand Down Expand Up @@ -177,7 +174,6 @@ resource "checkly_check" "example_check" {
# activated = true
# should_fail = false
# frequency = 10
# double_check = true
# use_global_alert_settings = true
# locations = [
# "us-west-1"
Expand Down
1 change: 0 additions & 1 deletion docs/resources/check_group.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ resource "checkly_check_group" "test_group1" {
locked = true
}
double_check = true
use_global_alert_settings = false
alert_settings {
Expand Down
3 changes: 1 addition & 2 deletions examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
required_providers {
checkly = {
source = "checkly/checkly"
version = "1.6.10"
version = "1.7.1"
}
}
}
Expand All @@ -25,7 +25,6 @@ resource "checkly_check" "example_check" {
activated = true
should_fail = false
frequency = 10
double_check = true
use_global_alert_settings = true

locations = [
Expand Down
4 changes: 0 additions & 4 deletions examples/resources/checkly_check/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ resource "checkly_check" "example_check" {
activated = true
should_fail = false
frequency = 1
double_check = true
use_global_alert_settings = true

locations = [
Expand All @@ -31,7 +30,6 @@ resource "checkly_check" "example_check_2" {
activated = true
should_fail = true
frequency = 1
double_check = true
degraded_response_time = 5000
max_response_time = 10000

Expand Down Expand Up @@ -102,7 +100,6 @@ resource "checkly_check" "browser_check_1" {
activated = true
should_fail = false
frequency = 10
double_check = true
use_global_alert_settings = true
locations = [
"us-west-1"
Expand Down Expand Up @@ -162,7 +159,6 @@ resource "checkly_check" "example_check" {
# activated = true
# should_fail = false
# frequency = 10
# double_check = true
# use_global_alert_settings = true
# locations = [
# "us-west-1"
Expand Down
1 change: 0 additions & 1 deletion examples/resources/checkly_check_group/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ resource "checkly_check_group" "test_group1" {
locked = true
}

double_check = true
use_global_alert_settings = false

alert_settings {
Expand Down

0 comments on commit 2538b81

Please sign in to comment.