From 41720df5a3c8a79a3bba5081204164947f0618ff Mon Sep 17 00:00:00 2001 From: Robert Fairburn <8029478+rfairburn@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:11:56 -0500 Subject: [PATCH] Update dogfood to fix carves to s3 (#19728) --- infrastructure/dogfood/terraform/aws-tf-module/main.tf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/infrastructure/dogfood/terraform/aws-tf-module/main.tf b/infrastructure/dogfood/terraform/aws-tf-module/main.tf index d2fc22889f..1f3f8fd282 100644 --- a/infrastructure/dogfood/terraform/aws-tf-module/main.tf +++ b/infrastructure/dogfood/terraform/aws-tf-module/main.tf @@ -69,7 +69,7 @@ locals { } module "main" { - source = "github.com/fleetdm/fleet//terraform?ref=tf-mod-root-v1.9.0" + source = "github.com/fleetdm/fleet//terraform?ref=tf-mod-root-v1.9.1" certificate_arn = module.acm.acm_certificate_arn vpc = { name = local.customer @@ -362,10 +362,9 @@ module "firehose-logging" { } module "osquery-carve" { - source = "github.com/fleetdm/fleet//terraform/addons/osquery-carve?ref=tf-mod-addon-osquery-carve-v1.0.1" + source = "github.com/fleetdm/fleet//terraform/addons/osquery-carve?ref=tf-mod-addon-osquery-carve-v1.1.0" osquery_carve_s3_bucket = { name = "fleet-${local.customer}-osquery-carve" - expires_days = 3650 } }