forked from terraform-aws-modules/terraform-aws-rds-aurora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
376 lines (302 loc) · 16.1 KB
/
main.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
locals {
port = coalesce(var.port, (var.engine == "aurora-postgresql" ? 5432 : 3306))
db_subnet_group_name = var.create_db_subnet_group ? join("", aws_db_subnet_group.this.*.name) : var.db_subnet_group_name
internal_db_subnet_group_name = try(coalesce(var.db_subnet_group_name, var.name), "")
master_password = var.create_cluster && var.create_random_password ? random_password.master_password[0].result : var.master_password
backtrack_window = (var.engine == "aurora-mysql" || var.engine == "aurora") && var.engine_mode != "serverless" ? var.backtrack_window : 0
rds_enhanced_monitoring_arn = var.create_monitoring_role ? join("", aws_iam_role.rds_enhanced_monitoring.*.arn) : var.monitoring_role_arn
rds_security_group_id = join("", aws_security_group.this.*.id)
is_serverless = var.engine_mode == "serverless"
}
# Ref. https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
data "aws_partition" "current" {}
# Random string to use as master password
resource "random_password" "master_password" {
count = var.create_cluster && var.create_random_password ? 1 : 0
length = var.random_password_length
special = false
}
resource "random_id" "snapshot_identifier" {
count = var.create_cluster ? 1 : 0
keepers = {
id = var.name
}
byte_length = 4
}
resource "aws_db_subnet_group" "this" {
count = var.create_cluster && var.create_db_subnet_group ? 1 : 0
name = local.internal_db_subnet_group_name
description = "For Aurora cluster ${var.name}"
subnet_ids = var.subnets
tags = var.tags
}
resource "aws_rds_cluster_parameter_group" "this" {
name = var.name
family = var.family
dynamic "parameter" {
for_each = var.cluster_parameters
content {
name = parameter.value.name
value = parameter.value.value
apply_method = lookup(parameter.value, "apply_method", null)
}
}
tags = var.tags
}
resource "aws_db_parameter_group" "this" {
for_each = var.create_cluster && !local.is_serverless ? var.instances : {}
name = "${var.name}-${each.key}"
family = var.family
dynamic "parameter" {
for_each = lookup(each.value, "parameter", {})
content {
name = parameter.value.name
value = parameter.value.value
apply_method = lookup(parameter.value, "apply_method", null)
}
}
tags = var.tags
lifecycle {
create_before_destroy = true
}
}
resource "aws_rds_cluster" "this" {
count = var.create_cluster ? 1 : 0
# Notes:
# iam_roles has been removed from this resource and instead will be used with aws_rds_cluster_role_association below to avoid conflicts per docs
global_cluster_identifier = var.global_cluster_identifier
enable_global_write_forwarding = var.enable_global_write_forwarding
cluster_identifier = var.name
replication_source_identifier = var.replication_source_identifier
source_region = var.source_region
engine = var.engine
engine_mode = var.engine_mode
engine_version = local.is_serverless ? null : var.engine_version
allow_major_version_upgrade = var.allow_major_version_upgrade
enable_http_endpoint = var.enable_http_endpoint
kms_key_id = var.kms_key_id
database_name = var.is_primary_cluster ? var.database_name : null
master_username = var.is_primary_cluster ? var.master_username : null
master_password = var.is_primary_cluster ? local.master_password : null
final_snapshot_identifier = "${var.final_snapshot_identifier_prefix}-${var.name}-${element(concat(random_id.snapshot_identifier.*.hex, [""]), 0)}"
skip_final_snapshot = var.skip_final_snapshot
deletion_protection = var.deletion_protection
backup_retention_period = var.backup_retention_period
preferred_backup_window = local.is_serverless ? null : var.preferred_backup_window
preferred_maintenance_window = local.is_serverless ? null : var.preferred_maintenance_window
port = local.port
db_subnet_group_name = local.db_subnet_group_name
vpc_security_group_ids = compact(concat(aws_security_group.this.*.id, var.vpc_security_group_ids))
snapshot_identifier = var.snapshot_identifier
storage_encrypted = var.storage_encrypted
apply_immediately = var.apply_immediately
db_cluster_parameter_group_name = aws_rds_cluster_parameter_group.this.id
db_instance_parameter_group_name = var.allow_major_version_upgrade ? var.db_cluster_db_instance_parameter_group_name : null
iam_database_authentication_enabled = var.iam_database_authentication_enabled
backtrack_window = local.backtrack_window
copy_tags_to_snapshot = var.copy_tags_to_snapshot
enabled_cloudwatch_logs_exports = var.enabled_cloudwatch_logs_exports
timeouts {
create = lookup(var.cluster_timeouts, "create", null)
update = lookup(var.cluster_timeouts, "update", null)
delete = lookup(var.cluster_timeouts, "delete", null)
}
dynamic "scaling_configuration" {
for_each = length(keys(var.scaling_configuration)) == 0 || !local.is_serverless ? [] : [var.scaling_configuration]
content {
auto_pause = lookup(scaling_configuration.value, "auto_pause", null)
max_capacity = lookup(scaling_configuration.value, "max_capacity", null)
min_capacity = lookup(scaling_configuration.value, "min_capacity", null)
seconds_until_auto_pause = lookup(scaling_configuration.value, "seconds_until_auto_pause", null)
timeout_action = lookup(scaling_configuration.value, "timeout_action", null)
}
}
dynamic "s3_import" {
for_each = var.s3_import != null && !local.is_serverless ? [var.s3_import] : []
content {
source_engine = "mysql"
source_engine_version = s3_import.value.source_engine_version
bucket_name = s3_import.value.bucket_name
bucket_prefix = lookup(s3_import.value, "bucket_prefix", null)
ingestion_role = s3_import.value.ingestion_role
}
}
dynamic "restore_to_point_in_time" {
for_each = length(keys(var.restore_to_point_in_time)) == 0 ? [] : [var.restore_to_point_in_time]
content {
source_cluster_identifier = restore_to_point_in_time.value.source_cluster_identifier
restore_type = lookup(restore_to_point_in_time.value, "restore_type", null)
use_latest_restorable_time = lookup(restore_to_point_in_time.value, "use_latest_restorable_time", null)
restore_to_time = lookup(restore_to_point_in_time.value, "restore_to_time", null)
}
}
lifecycle {
ignore_changes = [
# See https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/rds_cluster#replication_source_identifier
# Since this is used either in read-replica clusters or global clusters, this should be acceptable to specify
replication_source_identifier,
# See docs here https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/rds_global_cluster#new-global-cluster-from-existing-db-cluster
global_cluster_identifier,
]
}
tags = merge(var.tags, var.cluster_tags)
}
resource "aws_rds_cluster_instance" "this" {
for_each = var.create_cluster && !local.is_serverless ? var.instances : {}
# Notes:
# Do not set preferred_backup_window - its set at the cluster level and will error if provided here
identifier = var.instances_use_identifier_prefix ? null : lookup(each.value, "identifier", "${var.name}-${each.key}")
identifier_prefix = var.instances_use_identifier_prefix ? lookup(each.value, "identifier_prefix", "${var.name}-${each.key}-") : null
cluster_identifier = try(aws_rds_cluster.this[0].id, "")
engine = var.engine
engine_version = var.engine_version
instance_class = lookup(each.value, "instance_class", var.instance_class)
publicly_accessible = lookup(each.value, "publicly_accessible", var.publicly_accessible)
db_subnet_group_name = local.db_subnet_group_name
db_parameter_group_name = aws_db_parameter_group.this[each.key].id
apply_immediately = lookup(each.value, "apply_immediately", var.apply_immediately)
monitoring_role_arn = local.rds_enhanced_monitoring_arn
monitoring_interval = lookup(each.value, "monitoring_interval", var.monitoring_interval)
promotion_tier = lookup(each.value, "promotion_tier", null)
availability_zone = lookup(each.value, "availability_zone", null)
preferred_maintenance_window = lookup(each.value, "preferred_maintenance_window", var.preferred_maintenance_window)
auto_minor_version_upgrade = lookup(each.value, "auto_minor_version_upgrade", var.auto_minor_version_upgrade)
performance_insights_enabled = lookup(each.value, "performance_insights_enabled", var.performance_insights_enabled)
performance_insights_kms_key_id = lookup(each.value, "performance_insights_kms_key_id", var.performance_insights_kms_key_id)
performance_insights_retention_period = lookup(each.value, "performance_insights_retention_period", var.performance_insights_retention_period)
copy_tags_to_snapshot = lookup(each.value, "copy_tags_to_snapshot", var.copy_tags_to_snapshot)
ca_cert_identifier = var.ca_cert_identifier
timeouts {
create = lookup(var.instance_timeouts, "create", null)
update = lookup(var.instance_timeouts, "update", null)
delete = lookup(var.instance_timeouts, "delete", null)
}
# TODO - not sure why this is failing and throwing type mis-match errors
# tags = merge(var.tags, lookup(each.value, "tags", {}))
tags = var.tags
}
resource "aws_rds_cluster_endpoint" "this" {
for_each = var.create_cluster && !local.is_serverless ? var.endpoints : tomap({})
cluster_identifier = try(aws_rds_cluster.this[0].id, "")
cluster_endpoint_identifier = each.value.identifier
custom_endpoint_type = each.value.type
static_members = lookup(each.value, "static_members", null)
excluded_members = lookup(each.value, "excluded_members", null)
depends_on = [
aws_rds_cluster_instance.this
]
tags = merge(var.tags, lookup(each.value, "tags", {}))
}
resource "aws_rds_cluster_role_association" "this" {
for_each = var.create_cluster ? var.iam_roles : {}
db_cluster_identifier = try(aws_rds_cluster.this[0].id, "")
feature_name = each.value.feature_name
role_arn = each.value.role_arn
}
################################################################################
# Enhanced Monitoring
################################################################################
data "aws_iam_policy_document" "monitoring_rds_assume_role" {
statement {
actions = ["sts:AssumeRole"]
principals {
type = "Service"
identifiers = ["monitoring.rds.amazonaws.com"]
}
}
}
resource "aws_iam_role" "rds_enhanced_monitoring" {
count = var.create_cluster && var.create_monitoring_role && var.monitoring_interval > 0 ? 1 : 0
name = var.iam_role_use_name_prefix ? null : var.iam_role_name
name_prefix = var.iam_role_use_name_prefix ? "${var.iam_role_name}-" : null
description = var.iam_role_description
path = var.iam_role_path
assume_role_policy = data.aws_iam_policy_document.monitoring_rds_assume_role.json
managed_policy_arns = var.iam_role_managed_policy_arns
permissions_boundary = var.iam_role_permissions_boundary
force_detach_policies = var.iam_role_force_detach_policies
max_session_duration = var.iam_role_max_session_duration
tags = var.tags
}
resource "aws_iam_role_policy_attachment" "rds_enhanced_monitoring" {
count = var.create_cluster && var.create_monitoring_role && var.monitoring_interval > 0 ? 1 : 0
role = aws_iam_role.rds_enhanced_monitoring[0].name
policy_arn = "arn:${data.aws_partition.current.partition}:iam::aws:policy/service-role/AmazonRDSEnhancedMonitoringRole"
}
################################################################################
# Autoscaling
################################################################################
resource "aws_appautoscaling_target" "this" {
count = var.create_cluster && var.autoscaling_enabled && !local.is_serverless ? 1 : 0
max_capacity = var.autoscaling_max_capacity
min_capacity = var.autoscaling_min_capacity
resource_id = "cluster:${try(aws_rds_cluster.this[0].cluster_identifier, "")}"
scalable_dimension = "rds:cluster:ReadReplicaCount"
service_namespace = "rds"
}
resource "aws_appautoscaling_policy" "this" {
count = var.create_cluster && var.autoscaling_enabled && !local.is_serverless ? 1 : 0
name = "target-metric"
policy_type = "TargetTrackingScaling"
resource_id = "cluster:${try(aws_rds_cluster.this[0].cluster_identifier, "")}"
scalable_dimension = "rds:cluster:ReadReplicaCount"
service_namespace = "rds"
target_tracking_scaling_policy_configuration {
predefined_metric_specification {
predefined_metric_type = var.predefined_metric_type
}
scale_in_cooldown = var.autoscaling_scale_in_cooldown
scale_out_cooldown = var.autoscaling_scale_out_cooldown
target_value = var.predefined_metric_type == "RDSReaderAverageCPUUtilization" ? var.autoscaling_target_cpu : var.autoscaling_target_connections
}
depends_on = [
aws_appautoscaling_target.this
]
}
################################################################################
# Security Group
################################################################################
resource "aws_security_group" "this" {
count = var.create_cluster && var.create_security_group ? 1 : 0
name_prefix = "${var.name}-"
vpc_id = var.vpc_id
description = coalesce(var.security_group_description, "Control traffic to/from RDS Aurora ${var.name}")
tags = merge(var.tags, var.security_group_tags, { Name = var.name })
}
# TODO - change to map of ingress rules under one resource at next breaking change
resource "aws_security_group_rule" "default_ingress" {
count = var.create_cluster && var.create_security_group ? length(var.allowed_security_groups) : 0
description = "From allowed SGs"
type = "ingress"
from_port = local.port
to_port = local.port
protocol = "tcp"
source_security_group_id = element(var.allowed_security_groups, count.index)
security_group_id = local.rds_security_group_id
}
# TODO - change to map of ingress rules under one resource at next breaking change
resource "aws_security_group_rule" "cidr_ingress" {
count = var.create_cluster && var.create_security_group && length(var.allowed_cidr_blocks) > 0 ? 1 : 0
description = "From allowed CIDRs"
type = "ingress"
from_port = local.port
to_port = local.port
protocol = "tcp"
cidr_blocks = var.allowed_cidr_blocks
security_group_id = local.rds_security_group_id
}
resource "aws_security_group_rule" "egress" {
for_each = var.create_cluster && var.create_security_group ? var.security_group_egress_rules : {}
# required
type = "egress"
from_port = lookup(each.value, "from_port", local.port)
to_port = lookup(each.value, "to_port", local.port)
protocol = "tcp"
security_group_id = local.rds_security_group_id
# optional
cidr_blocks = lookup(each.value, "cidr_blocks", null)
description = lookup(each.value, "description", null)
ipv6_cidr_blocks = lookup(each.value, "ipv6_cidr_blocks", null)
prefix_list_ids = lookup(each.value, "prefix_list_ids", null)
source_security_group_id = lookup(each.value, "source_security_group_id", null)
}