-
Notifications
You must be signed in to change notification settings - Fork 56
/
main.tf
112 lines (85 loc) · 3.56 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
//
// Module: tf_aws_rds
//
// This template creates the following resources
// - An RDS instance
// - A database subnet group
// - You should want your RDS instance in a VPC
resource "aws_db_instance" "main_rds_instance" {
identifier = "${var.rds_instance_identifier}"
allocated_storage = "${var.rds_allocated_storage}"
engine = "${var.rds_engine_type}"
engine_version = "${var.rds_engine_version}"
instance_class = "${var.rds_instance_class}"
name = "${var.database_name}"
username = "${var.database_user}"
password = "${var.database_password}"
port = "${var.database_port}"
# Because we're assuming a VPC, we use this option, but only one SG id
vpc_security_group_ids = ["${aws_security_group.main_db_access.id}"]
# We're creating a subnet group in the module and passing in the name
db_subnet_group_name = "${aws_db_subnet_group.main_db_subnet_group.id}"
parameter_group_name = "${var.use_external_parameter_group ? var.parameter_group_name : aws_db_parameter_group.main_rds_instance.id}"
# We want the multi-az setting to be toggleable, but off by default
multi_az = "${var.rds_is_multi_az}"
storage_type = "${var.rds_storage_type}"
iops = "${var.rds_iops}"
publicly_accessible = "${var.publicly_accessible}"
# Upgrades
allow_major_version_upgrade = "${var.allow_major_version_upgrade}"
auto_minor_version_upgrade = "${var.auto_minor_version_upgrade}"
apply_immediately = "${var.apply_immediately}"
maintenance_window = "${var.maintenance_window}"
# Snapshots and backups
skip_final_snapshot = "${var.skip_final_snapshot}"
copy_tags_to_snapshot = "${var.copy_tags_to_snapshot}"
backup_retention_period = "${var.backup_retention_period}"
backup_window = "${var.backup_window}"
# enhanced monitoring
monitoring_interval = "${var.monitoring_interval}"
tags = "${merge(var.tags, map("Name", format("%s", var.rds_instance_identifier)))}"
}
resource "aws_db_parameter_group" "main_rds_instance" {
count = "${var.use_external_parameter_group ? 0 : 1}"
name = "${var.rds_instance_identifier}-${replace(var.db_parameter_group, ".", "")}-custom-params"
family = "${var.db_parameter_group}"
# Example for MySQL
# parameter {
# name = "character_set_server"
# value = "utf8"
# }
# parameter {
# name = "character_set_client"
# value = "utf8"
# }
tags = "${merge(var.tags, map("Name", format("%s", var.rds_instance_identifier)))}"
}
resource "aws_db_subnet_group" "main_db_subnet_group" {
name = "${var.rds_instance_identifier}-subnetgrp"
description = "RDS subnet group"
subnet_ids = ["${var.subnets}"]
tags = "${merge(var.tags, map("Name", format("%s", var.rds_instance_identifier)))}"
}
# Security groups
resource "aws_security_group" "main_db_access" {
name = "${var.rds_instance_identifier}-access"
description = "Allow access to the database"
vpc_id = "${var.rds_vpc_id}"
tags = "${merge(var.tags, map("Name", format("%s", var.rds_instance_identifier)))}"
}
resource "aws_security_group_rule" "allow_db_access" {
type = "ingress"
from_port = "${var.database_port}"
to_port = "${var.database_port}"
protocol = "tcp"
cidr_blocks = ["${var.private_cidr}"]
security_group_id = "${aws_security_group.main_db_access.id}"
}
resource "aws_security_group_rule" "allow_all_outbound" {
type = "egress"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = "${aws_security_group.main_db_access.id}"
}