From 85cf2d1e183b8be63216c65765c7e7f24aed80d8 Mon Sep 17 00:00:00 2001 From: Michael van Tellingen Date: Mon, 15 Jul 2024 20:23:11 +0200 Subject: [PATCH] Update example --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c804f8b..aa71d6d 100644 --- a/README.md +++ b/README.md @@ -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 * * * *" @@ -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 }