Skip to content

Commit

Permalink
add TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
phbnf committed Nov 22, 2024
1 parent c146ee4 commit 541264a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deployment/modules/aws/storage/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,15 @@ resource "aws_rds_cluster" "log_rds" {
engine_version = "8.0.mysql_aurora.3.05.2"
database_name = "tessera"
master_username = "root"
# TODO(phboneff): move to either random strings / Secret Manager / IAM
master_password = "password"
skip_final_snapshot = true
backup_retention_period = 0
}

resource "aws_rds_cluster_instance" "cluster_instances" {
# TODO(phboneff): make some of these variables and/or
# tweak some of these.
count = 1
identifier = "${local.name}-writer-${count.index}"
cluster_identifier = aws_rds_cluster.log_rds.id
Expand Down

0 comments on commit 541264a

Please sign in to comment.