Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: turn on new saved search in prod #1999

Merged
merged 4 commits into from
Sep 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions terraform/prod.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ website_managed_waf_rules = {
}
}
website_feature_flags = {
useNewTable = false,
useNewTable = true,
}

// ECS Cluster
Expand All @@ -51,9 +51,9 @@ api_container_image_tag = "stable"
api_default_desired_task_count = 3
api_minumum_task_count = 2
api_maximum_task_count = 5
api_enable_grants_scraper = true
api_enable_grants_digest = true
api_enable_saved_search_grants_digest = false
api_enable_grants_scraper = false
api_enable_grants_digest = false
api_enable_saved_search_grants_digest = true
api_log_retention_in_days = 30
api_datadog_environment_variables = {
DD_PROFILING_ENABLED = true,
Expand Down
Loading