From 8bb62bc9fe21c6c5e8412aef8f07906969c42188 Mon Sep 17 00:00:00 2001 From: John Hanrahan Date: Tue, 23 Feb 2021 14:43:52 -0800 Subject: [PATCH] cleanup --- docs/index.md | 12 ++++++------ main.tf | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/index.md b/docs/index.md index 48196d3..619ee2f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -200,12 +200,12 @@ resource "sigsci_site_templated_rule" "test_template_rule" { } alerts { - long_name = "alert 1" - interval = 60 - threshold = 10 - skip_notifications = true - enabled = true - action = "info" + long_name = "alert 1" + interval = 60 + threshold = 10 + skip_notifications = true + enabled = true + action = "info" block_duration_seconds = sigsci_site.my-site.block_duration_seconds } diff --git a/main.tf b/main.tf index add37db..e93f776 100644 --- a/main.tf +++ b/main.tf @@ -2,7 +2,7 @@ // required_providers { // sigsci = { // source = "signalsciences/sigsci" -// version = "0.3.0" +// version = "0.4.0" // } // } //} @@ -19,7 +19,7 @@ provider "sigsci" { resource "sigsci_site" "my-site" { short_name = "manual_test" display_name = "manual terraform test" - block_duration_seconds = 86411 + block_duration_seconds = 86400 agent_anon_mode = "" agent_level = "block" }