-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinstances.tf
255 lines (225 loc) · 5.78 KB
/
instances.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
resource "aws_instance" "discourse_1" {
associate_public_ip_address = true
instance_type = "${var.ec2_instance_type}"
key_name = "${aws_key_pair.discourse_deploy.key_name}"
subnet_id = "${aws_subnet.discourse_a.id}"
availability_zone = "${var.zone_a}"
ami = "${var.ec2_ami}"
vpc_security_group_ids = [
"${aws_security_group.discourse_ssh.id}",
"${aws_security_group.discourse_internal_http.id}"
]
tags = {
Name = "${var.slug}"
Description = "${var.slug}"
Stack = "${var.slug}"
}
root_block_device {
volume_size = "12"
}
# --
# We create a high timeout so that Discourse has time
# to setup, without us shutting it down. Since these
# are going on the t2 tier, steal time can be a real
# problem when you first boot onto a cluster.
# --
timeouts {
create = "30m"
}
# --
# Do this early so that if there is a problem then you
# can SSH into the instance as everything is going wrong
# and figure it out while it's happening.
# @example ssh ubuntu@$(cat ec2.txt)
# --
provisioner "local-exec" {
command = "echo ${aws_instance.discourse_1.public_dns} > ec2.txt"
}
# --
# We use agent=false because
# 1.) It doesn't support SSH-Agent proper, Yubikey fails.
# 2.) If you use a file there is a bug: hashicorp/terraform#2983
# 3.) This is also a problem on Windows.
# --
provisioner "file" {
source = "keys/user.pub"
destination = "~/.ssh/user.pub"
connection {
agent = false
user = "ubuntu"
type = "ssh"
host = self.public_ip
private_key = "${
file("keys/deploy.key")
}"
}
}
# --
provisioner "remote-exec" {
connection {
agent = false
user = "ubuntu"
type = "ssh"
host = self.public_ip
private_key = "${
file("keys/deploy.key")
}"
}
inline = [
"cat ~/.ssh/user.pub >> ~/.ssh/authorized_keys"
]
}
# --
provisioner "file" {
content = "${data.template_file.discourse.rendered}"
destination = "~/web.yml"
connection {
agent = false
user = "ubuntu"
type = "ssh"
host = self.public_ip
private_key = "${
file("keys/deploy.key")
}"
}
}
# --
provisioner "file" {
content = "${data.template_file.docker.rendered}"
destination = "~/daemon.json"
connection {
agent = false
user = "ubuntu"
type = "ssh"
host = self.public_ip
private_key = "${
file("keys/deploy.key")
}"
}
}
# --
provisioner "remote-exec" {
connection {
agent = false
user = "ubuntu"
type = "ssh"
host = self.public_ip
private_key = "${
file("keys/deploy.key")
}"
}
inline = [
<<-BASH
sudo apt-get update && sudo apt-get dist-upgrade \
-o Dpkg::Options::="--force-confdef" \
-o Dpkg::Options::="--force-confold" \
--assume-yes
BASH
,
<<-BASH
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
repo=https://download.docker.com/linux/ubuntu
sudo add-apt-repository "deb [arch=amd64] $repo $(lsb_release -cs) stable"
sudo apt-get update && sudo apt-get install docker-ce -y \
--no-install-recommends
BASH
,
<<-BASH
sudo mkdir -p /opt/discourse
sudo chown ubuntu.ubuntu /opt/discourse
git clone https://github.com/discourse/discourse_docker.git /opt/discourse
mv ~/web.yml /opt/discourse/containers/web.yml
BASH
,
<<-BASH
sudo mv ~/daemon.json /etc/docker/daemon.json
BASH
,
<<-BASH
cd /opt/discourse
sudo ./launcher bootstrap web
sudo ./launcher start web
BASH
]
}
}
# --
resource "aws_elasticache_cluster" "discourse" {
engine = "redis"
cluster_id = "${var.slug}"
subnet_group_name = "${aws_elasticache_subnet_group.discourse.id}"
node_type = "${var.elasticache_instance_type}"
num_cache_nodes = 1
port = 11211
security_group_ids = [
"${aws_security_group.discourse_internal.id}"
]
tags = {
Name = "${var.slug}"
Description = "${var.slug}"
Stack = "${var.slug}"
}
}
# --
resource "aws_db_instance" "discourse" {
storage_type = "gp2"
username = "discourse"
publicly_accessible = false
db_subnet_group_name = "${aws_db_subnet_group.discourse.id}"
instance_class = "${var.rds_instance_type}"
availability_zone = "${var.zone_a}"
password = "${var.db_password}"
skip_final_snapshot = true
engine_version = "9.6.3"
allocated_storage = 6
engine = "postgres"
db_name = "discourse"
multi_az = false
# --
# Enterprise Options
# apply_immediately = false
# backup_time = "01:00-3:00"
# storage_encrypted = true
# multi_az = true
# --
vpc_security_group_ids = [
"${aws_security_group.discourse_internal.id}"
]
tags = {
Name = "${var.slug}"
Description = "${var.slug}"
Stack = "${var.slug}"
}
}
resource "aws_elb" "discourse_1" {
name = "${var.slug}"
cross_zone_load_balancing = true
subnets = [ "${aws_subnet.discourse_a.id}", "${aws_subnet.discourse_b.id}" ]
security_groups = [ "${aws_security_group.discourse_http.id}" ]
instances = ["${aws_instance.discourse_1.id}"]
connection_draining_timeout = 400
connection_draining = true
idle_timeout = 400
listener {
instance_port = 80
instance_protocol = "http"
lb_protocol = "http"
lb_port = 80
}
health_check {
healthy_threshold = 4
unhealthy_threshold = 2
target = "HTTP:80/"
interval = 12
timeout = 4
}
tags = {
Name = "${var.slug}"
Description = "${var.slug}"
Stack = "${var.slug}"
}
provisioner "local-exec" {
command = "echo ${aws_elb.discourse_1.dns_name} > elb.txt"
}
}