Skip to content

Commit

Permalink
Temp: Just 1 instance and use homepage as health check
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgriff authored Feb 7, 2025
1 parent 49b23cf commit 8fdc188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/elastic_beanstalk.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ locals {
main_app_elastic_beanstalk_ec2_instance_type = "t4g.large"
main_app_elastic_beanstalk_root_volume_size = 64 // Disk space (in GB) to give each EC2 instance

main_app_elastic_beanstalk_min_instances = 2
main_app_elastic_beanstalk_min_instances = 1
main_app_elastic_beanstalk_max_instances = 12

main_app_elastic_beanstalk_health_check_path = "/health-check" // It would be nice if this was a dedicated "/health-check" endpoint that's unauthenticated
main_app_elastic_beanstalk_health_check_path = "/" // It would be nice if this was a dedicated "/health-check" endpoint that's unauthenticated
main_app_elastic_beanstalk_health_check_matcher_http_code = 200
}

Expand Down

0 comments on commit 8fdc188

Please sign in to comment.