From 9db32a582786c581d7509d440d2af359e70c605b Mon Sep 17 00:00:00 2001 From: Grant Bilstad <82750216+pacamaster@users.noreply.github.com> Date: Wed, 5 Jun 2024 11:12:32 -0600 Subject: [PATCH] Update s3 carves bucket expiry for dogfood (#19533) Need to update to extended expiry for carves s3 as not to remove for software_installs @rfairburn will apply with no downtime to Dogfood --- infrastructure/dogfood/terraform/aws-tf-module/main.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infrastructure/dogfood/terraform/aws-tf-module/main.tf b/infrastructure/dogfood/terraform/aws-tf-module/main.tf index a845a0ec32..21f215fc1d 100644 --- a/infrastructure/dogfood/terraform/aws-tf-module/main.tf +++ b/infrastructure/dogfood/terraform/aws-tf-module/main.tf @@ -290,7 +290,8 @@ module "firehose-logging" { module "osquery-carve" { source = "github.com/fleetdm/fleet//terraform/addons/osquery-carve?ref=tf-mod-addon-osquery-carve-v1.0.0" osquery_carve_s3_bucket = { - name = "${local.customer}-osquery-carve" + name = "fleet-${local.customer}-osquery-carve" + expires_days = 3650 } }