Skip to content

Commit

Permalink
Merge pull request #975 from NOAA-OWP/apocalyptic-test-tweaks
Browse files Browse the repository at this point in the history
Increases max memory for TI version only of fim-data-prep Lambda
  • Loading branch information
DrixTabligan-NOAA authored Nov 18, 2024
2 parents 5d066ac + d6a9bab commit 76881e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/LAMBDA/viz_functions/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ resource "aws_s3_object" "fim_data_prep_zip_upload" {
resource "aws_lambda_function" "viz_fim_data_prep" {
function_name = "hv-vpp-${var.environment}-viz-fim-data-prep"
description = "Lambda function to setup a fim run by retriving max flows from the database, prepare an ingest database table, and creating a dictionary for huc-based worker lambdas to use."
memory_size = 2048
memory_size = var.environment == "ti" ? 4096 : 2048 # Larger for apocalyptic testing
timeout = 900
vpc_config {
security_group_ids = var.db_lambda_security_groups
Expand Down

0 comments on commit 76881e1

Please sign in to comment.