mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
rds module maintenance window (#17739)
📝 docs(README.md): update alb_config and fleet_config tables to reflect new changes 🔧 fix(main.tf): add preferred_maintenance_window to rds module to allow for scheduled maintenance 🔧 fix(variables.tf): add preferred_maintenance_window to rds_config variable to allow for scheduled maintenance 🔧 fix(README.md): update fleet_config image version to v4.47.1 for latest features and bug fixes
This commit is contained in:
parent
909420d453
commit
7d156597d9
3 changed files with 7 additions and 3 deletions
File diff suppressed because one or more lines are too long
|
|
@ -62,6 +62,8 @@ module "rds" {
|
|||
skip_final_snapshot = true
|
||||
snapshot_identifier = var.rds_config.snapshot_identifier
|
||||
|
||||
preferred_maintenance_window = var.rds_config.preferred_maintenance_window
|
||||
|
||||
cluster_tags = var.rds_config.cluster_tags
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ variable "rds_config" {
|
|||
master_username = optional(string, "fleet")
|
||||
snapshot_identifier = optional(string)
|
||||
cluster_tags = optional(map(string), {})
|
||||
preferred_maintenance_window = optional(string, "thurs:23:00-fri:00:00")
|
||||
})
|
||||
default = {
|
||||
name = "fleet"
|
||||
|
|
@ -43,6 +44,7 @@ variable "rds_config" {
|
|||
master_username = "fleet"
|
||||
snapshot_identifier = null
|
||||
cluster_tags = {}
|
||||
preferred_maintenance_window = "thurs:23:00-fri:00:00"
|
||||
}
|
||||
description = "The config for the terraform-aws-modules/rds-aurora/aws module"
|
||||
nullable = false
|
||||
|
|
|
|||
Loading…
Reference in a new issue