Skip to content

Commit

Permalink
Update db.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisshiplet authored Feb 2, 2023
1 parent a3de49a commit 894d758
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module "database" {
count = var.use_database_cluster ? 1 : 0
source = "git::https://github.com/synapsestudios/terraform-aws-rds-aurora-cluster.git?ref=a8f4ea6a6a5886b2bfeb43d1403a7abfe8e3f0e2"
source = "git::https://github.com/synapsestudios/terraform-aws-rds-aurora-cluster.git?ref=v0.0.7"
availability_zones = var.azs
database_subnets = var.subnets
db_cluster_parameter_group_name = "default.aurora-postgresql14"
instance_class = "db.t4g.medium"
name = "backend"
vpc_id = var.vpc_id
database_name = "backend"
}
}

0 comments on commit 894d758

Please sign in to comment.