Skip to content

Commit

Permalink
Update example
Browse files Browse the repository at this point in the history
  • Loading branch information
mvantellingen authored Jul 15, 2024
1 parent e8e30e6 commit 85cf2d1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ resource "folge_datasource" "test" {
}
resource "folge_check_http_status" "test" {
application_id = folge_application.test.id
datasource_id = folge_datasource.test.id
crontab = "*/5 * * * *"
Expand All @@ -60,12 +61,14 @@ resource "folge_check_http_status" "test" {
resource "folge_check_json_property" "test" {
application_id = folge_application.test.id
datasource_id = folge_datasource.test.id
crontab = "*/5 * * * *"
label = "My check"
name = "My check"
path = "authentication.failed"
operator = "HAS_VALUE"
operator = "eq"
datatype = "bool"
value_bool = false
}
Expand Down

0 comments on commit 85cf2d1

Please sign in to comment.