This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
forked from Kong/kong-terraform-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rds.tf
54 lines (43 loc) · 1.56 KB
/
rds.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
resource "aws_db_instance" "kong" {
count = local.enable_rds ? 1 : 0
identifier = format("%s-%s", var.service, var.environment)
engine = "postgres"
engine_version = var.db_engine_version
instance_class = var.db_instance_class
allocated_storage = var.db_storage_size
storage_type = "gp2"
backup_retention_period = var.db_backup_retention_period
db_subnet_group_name = var.db_subnets
multi_az = var.db_multi_az
parameter_group_name = format("%s-%s", var.service, var.environment)
username = "root"
password = random_string.master_password.result
vpc_security_group_ids = [aws_security_group.postgresql.id]
skip_final_snapshot = var.db_final_snapshot_identifier == "" ? true : false
final_snapshot_identifier = var.db_final_snapshot_identifier == "" ? null : var.db_final_snapshot_identifier
tags = merge(
{
"Name" = format("%s-%s", var.service, var.environment),
"Environment" = var.environment,
"Description" = var.description,
"Service" = var.service,
},
var.tags
)
depends_on = [aws_db_parameter_group.kong]
}
resource "aws_db_parameter_group" "kong" {
count = var.db_instance_count > 0 ? 1 : 0
name = format("%s-%s", var.service, var.environment)
family = var.db_family
description = var.description
tags = merge(
{
"Name" = format("%s-%s", var.service, var.environment),
"Environment" = var.environment,
"Description" = var.description,
"Service" = var.service,
},
var.tags
)
}