Skip to content

Commit

Permalink
change provisioned capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Winkler authored and Scott Winkler committed Dec 28, 2020
1 parent a98dc22 commit 3e88003
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/database/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "aws_rds_cluster" "rds_cluster" {
preferred_backup_window = "04:00-07:00"
engine_mode = "serverless"
scaling_configuration {
max_capacity = 1
min_capacity = 1
max_capacity = 2
min_capacity = 2
}
}
1 change: 1 addition & 0 deletions modules/lambda/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ resource "aws_lambda_function" "lambda_function" {
memory_size = 256
runtime = "go1.x"
timeout = 60
reserved_concurrent_executions = 1

environment {
variables = {
Expand Down

0 comments on commit 3e88003

Please sign in to comment.