From df16d7656504ebd463c26f78f991cf99c7af2f43 Mon Sep 17 00:00:00 2001 From: Luke Heath Date: Mon, 10 Jun 2024 15:15:36 -0700 Subject: [PATCH] Add fleet_calendar_periodicity to dogfood environment (#19633) From this PR: https://github.com/fleetdm/fleet/pull/19559 --------- Co-authored-by: Robert Fairburn <8029478+rfairburn@users.noreply.github.com> --- infrastructure/dogfood/terraform/aws-tf-module/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/infrastructure/dogfood/terraform/aws-tf-module/main.tf b/infrastructure/dogfood/terraform/aws-tf-module/main.tf index a08aafc158..f8a055fff2 100644 --- a/infrastructure/dogfood/terraform/aws-tf-module/main.tf +++ b/infrastructure/dogfood/terraform/aws-tf-module/main.tf @@ -36,6 +36,10 @@ variable "geolite2_license" {} variable "fleet_sentry_dsn" {} variable "elastic_url" {} variable "elastic_token" {} +variable "fleet_calendar_periodicity" { + default = "30s" + description = "The refresh period for the calendar integration." +} data "aws_caller_identity" "current" {} @@ -55,6 +59,7 @@ locals { ELASTIC_APM_SERVER_URL = var.elastic_url ELASTIC_APM_SECRET_TOKEN = var.elastic_token ELASTIC_APM_SERVICE_NAME = "dogfood" + FLEET_CALENDAR_PERIODICITY = var.fleet_calendar_periodicity } sentry_secrets = { FLEET_SENTRY_DSN = "${aws_secretsmanager_secret.sentry.arn}:FLEET_SENTRY_DSN::"