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
2 changes: 1 addition & 1 deletion .env.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# LITELLM_VERSION eg: main-v1.56.5
# Get it from https://github.com/berriai/litellm/pkgs/container/litellm/versions?filters%5Bversion_type%5D=tagged
LITELLM_VERSION="litellm_stable_release_branch-v1.73.0-stable"
LITELLM_VERSION="litellm_stable_release_branch-v1.76.1-stable"
TERRAFORM_S3_BUCKET_NAME="" #Must be globally unique
BUILD_FROM_SOURCE="false"
HOSTED_ZONE_NAME=""
Expand Down
4 changes: 2 additions & 2 deletions litellm-terraform-stack/modules/base/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ resource "aws_db_subnet_group" "main" {
resource "aws_db_parameter_group" "example_pg" {
name = "rds-postgres-parameter-group"
# Update the family to match your PostgreSQL version
family = "postgres15"
family = "postgres17"

# Enable logging of all statements
parameter {
Expand All @@ -70,7 +70,7 @@ resource "aws_db_parameter_group" "example_pg" {
resource "aws_db_instance" "database" {
identifier = "${var.name}-litellm-db"
engine = "postgres"
engine_version = "15" # or "15.x"
engine_version = "17" # (Should be compatible back to at least "15.x" if needed)
instance_class = var.rds_instance_class
storage_type = "gp3"
allocated_storage = var.rds_allocated_storage
Expand Down