Skip to content

Commit

Permalink
Merge pull request #7 from MaterializeInc/db-default-size
Browse files Browse the repository at this point in the history
Bump the example db instance size
  • Loading branch information
bobbyiliev authored Nov 25, 2024
2 parents b7b31df + b887fcd commit a4424f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module "materialize_infrastructure" {
database_password = "your-secure-password"
db_identifier = "materialize-simple"
postgres_version = "15"
db_instance_class = "db.t3.micro"
db_instance_class = "db.t3.large"
db_allocated_storage = 20
database_name = "materialize"
database_username = "materialize"
Expand Down
4 changes: 2 additions & 2 deletions terraform.tfvars.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ tags = {
Project = "my-project"
}

node_group_instance_types = ["t3.micro"]
node_group_instance_types = ["r5.xlarge"]
node_group_desired_size = 3
node_group_min_size = 2
node_group_max_size = 5

db_instance_class = "db.t3.micro"
db_instance_class = "db.t3.large"
db_allocated_storage = 20
db_multi_az = false

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ variable "postgres_version" {
variable "db_instance_class" {
description = "Instance class for the RDS instance"
type = string
default = "db.t3.medium"
default = "db.t3.large"
}

variable "db_allocated_storage" {
Expand Down

0 comments on commit a4424f9

Please sign in to comment.