Skip to content

Commit 3f39964

Browse files
Merge branch 'main' into feature/add-risks-v6-tags
2 parents 3632e2b + 0a5c8f7 commit 3f39964

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/scenarios/memory-optimization/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ variable "name_prefix" {
1515
}
1616

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

2222
validation {
2323
condition = var.container_memory >= 512 && var.container_memory <= 30720

modules/scenarios/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ variable "enable_memory_optimization_demo" {
1313
}
1414

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

2020
validation {
2121
condition = var.memory_optimization_container_memory >= 512 && var.memory_optimization_container_memory <= 4096

0 commit comments

Comments
 (0)