Skip to content
Open
Show file tree
Hide file tree
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 modules/scenarios/memory-optimization/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ variable "name_prefix" {
}

variable "container_memory" {
description = "Memory allocation per container in MB. Current monitoring shows 800MB average usage."
description = "Memory allocation per container in MB. Optimized based on monitoring data showing 800MB average usage with 950MB peaks."
type = number
default = 2048
default = 1024

validation {
condition = var.container_memory >= 512 && var.container_memory <= 30720
Expand Down
4 changes: 2 additions & 2 deletions modules/scenarios/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ variable "enable_memory_optimization_demo" {
}

variable "memory_optimization_container_memory" {
description = "Memory allocation per ECS container in MB. Production baseline for Java applications with adequate headroom."
description = "Memory allocation per ECS container in MB. Optimized based on monitoring data showing 800MB average usage with 950MB peaks."
type = number
default = 2048
default = 1024

validation {
condition = var.memory_optimization_container_memory >= 512 && var.memory_optimization_container_memory <= 4096
Expand Down