Skip to content

Commit

Permalink
infra: version bump (#98)
Browse files Browse the repository at this point in the history
* infra: version bump

* match config
  • Loading branch information
andreiio authored Nov 24, 2024
1 parent 9bc97f0 commit 35226d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/database.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
resource "aws_db_instance" "main" {
identifier = local.namespace
db_name = "rezultatevot"
instance_class = var.env == "production" ? "db.m7g.xlarge" : "db.t4g.micro"
instance_class = var.env == "production" ? "db.m7g.4xlarge" : "db.t4g.micro"
publicly_accessible = false
multi_az = true
deletion_protection = true
Expand Down
2 changes: 1 addition & 1 deletion terraform/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ locals {
namespace = "rezultatevot-v2-${var.env}"
image = {
repo = "code4romania/rezultatevot",
tag = "0.6.2"
tag = "0.7.0"
}

domains = [
Expand Down

0 comments on commit 35226d4

Please sign in to comment.