Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RDS alarm thresholds #222

Merged
merged 1 commit into from
Aug 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cloud/aws/templates/aws_oidc/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ variable "rds_create_low_disk_space_alarm" {
variable "rds_disk_free_storage_low_threshold" {
type = string
description = "The threshold for the free disk storage space (in bytes) before the alarm gets triggered (if enabled)."
default = "5368709120" // 5 GB
default = "500000000" // ~500 MB
}

variable "rds_create_low_memory_alarm" {
Expand All @@ -193,7 +193,7 @@ variable "rds_create_low_memory_alarm" {
variable "rds_low_memory_threshold" {
type = string
description = "The threshold for the low freeable memory (in bytes) before the alarm gets triggered (if enabled)."
default = "256000000" // ~256 MB
default = "150000000" // ~150 MB
}

variable "rds_create_low_cpu_credit_alarm" {
Expand Down