Skip to content

Commit

Permalink
change resource sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgriff committed Feb 10, 2025
1 parent 4e23427 commit 7b55c89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/database.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resource "aws_rds_cluster" "aurora_cluster" {
// Sizing
serverlessv2_scaling_configuration {
min_capacity = 0.5
max_capacity = 8
max_capacity = 32
}

// Connection & security details
Expand Down
2 changes: 1 addition & 1 deletion terraform/elastic_beanstalk.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

locals {
main_app_elastic_beanstalk_solution_stack_name = "64bit Amazon Linux 2023 v3.2.2 running .NET 8"
main_app_elastic_beanstalk_ec2_instance_type = "t4g.large"
main_app_elastic_beanstalk_ec2_instance_type = "t4g.xlarge"
main_app_elastic_beanstalk_root_volume_size = 64 // Disk space (in GB) to give each EC2 instance

main_app_elastic_beanstalk_min_instances = 1
Expand Down

0 comments on commit 7b55c89

Please sign in to comment.