mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 06:48:54 +00:00
Terraform fixes for Dogfood AWS resources (#29999)
- Fixing software installers versioning preventing AWS Backups from completing successfully - Bumped version of tf-mod-root from v1.15.1 -> v1.15.2
This commit is contained in:
parent
eff5d01282
commit
43e488cff6
1 changed files with 4 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ locals {
|
|||
}
|
||||
|
||||
module "main" {
|
||||
source = "github.com/fleetdm/fleet-terraform?ref=tf-mod-root-v1.15.1"
|
||||
source = "github.com/fleetdm/fleet-terraform?ref=tf-mod-root-v1.15.2"
|
||||
certificate_arn = module.acm.acm_certificate_arn
|
||||
vpc = {
|
||||
name = local.customer
|
||||
|
|
@ -162,6 +162,9 @@ module "main" {
|
|||
bucket_prefix = "${local.customer}-software-installers-"
|
||||
create_kms_key = true
|
||||
kms_alias = "${local.customer}-software-installers"
|
||||
enable_bucket_versioning = true
|
||||
expire_noncurrent_versions = true
|
||||
noncurrent_version_expiration_days = 30
|
||||
tags = {
|
||||
backup = "true"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue