Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions indexer/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "aws_db_parameter_group" "main" {
}

# Matches v3.
# Time to sleep between autovacuum runs in seconds. Minimum delay bewteen autovacuum runs.
# Time to sleep between autovacuum runs in seconds. Minimum delay between autovacuum runs.
# Decreased so autovacuum runs more frequently and locks the database for shorter periods of time.
# More details: https://postgresqlco.nf/doc/en/param/autovacuum_naptime/
parameter {
Expand Down Expand Up @@ -98,7 +98,7 @@ resource "aws_db_parameter_group" "main" {

# Matches v3.
# Sets the minimum execution time in ms above which autovacuum actions will be logged.
# Decreased to account for other autovacuum setttings meant to reduce the average period of time
# Decreased to account for other autovacuum settings meant to reduce the average period of time
# spent autovacuuming.
# More details: https://postgresqlco.nf/doc/en/param/log_autovacuum_min_duration/
parameter {
Expand Down
2 changes: 1 addition & 1 deletion indexer/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ variable "indexers" {
# Should contain 3 availability zones
# https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html
# TODO(DEC-740): See if there's a way to utilize 'aws_availability_zones' and
# skip over availiability zones not in the mappings below.
# skip over availability zones not in the mappings below.
availability_zones = list(string)

# AWS VPC CIDR Block
Expand Down