Skip to content

Commit

Permalink
Updating the prod plugin update frequency (#1333)
Browse files Browse the repository at this point in the history
  • Loading branch information
manasaV3 authored Jan 13, 2025
1 parent 859ffb8 commit fcfc2f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .happy/terraform/modules/ecs-stack/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ locals {
plugins_function_name = "${local.custom_stack_name}-plugins"
data_workflows_function_name = "${local.custom_stack_name}-data-workflows"

plugin_update_schedule = var.env == "prod" ? "rate(5 minutes)" : var.env == "staging" ? "rate(1 hour)" : "rate(1 day)"
plugin_update_schedule = var.env == "prod" ? "rate(1 hour)" : var.env == "staging" ? "rate(1 hour)" : "rate(1 day)"
log_retention_period = var.env == "prod" ? 365 : 14
}

Expand Down

0 comments on commit fcfc2f1

Please sign in to comment.