Skip to content

Commit

Permalink
Update rds module to explicitly use a postgres db
Browse files Browse the repository at this point in the history
  • Loading branch information
252afh committed Aug 22, 2024
1 parent c749c38 commit 427d67f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion infrastructure/postgres.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ module "rds" {
service_sg_ids = [module.ecs.ecs_sg_id]
publicly_accessible = var.publicly_accessible
securelist_ips = concat(var.developer_ips, var.internal_ips)
secret_tags = {
secret_tags = {
"platform:secret-purpose" : "general"
}
engine = "postgres"
engine_version = "16.3"
family = "postgres16"
}

0 comments on commit 427d67f

Please sign in to comment.