-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
278 lines (234 loc) · 6.72 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
resource "tls_private_key" "rsa-master" {
algorithm = "RSA"
rsa_bits = 4096
}
resource "aws_key_pair" "jenkins-master-key" {
key_name = "jenkins-master-key"
public_key = tls_private_key.rsa-master.public_key_openssh
depends_on = [tls_private_key.rsa-master]
}
resource "local_file" "jenkins-master-key" {
content = tls_private_key.rsa-master.private_key_pem
filename = "tfkey-master"
depends_on = [tls_private_key.rsa-master]
}
resource "null_resource" "change_permissions" {
depends_on = [local_file.jenkins-master-key]
provisioner "local-exec" {
command = "chmod 400 tfkey-master"
}
}
resource "tls_private_key" "rsa-slave" {
algorithm = "RSA"
rsa_bits = 4096
}
resource "aws_key_pair" "jenkins-slave-key" {
key_name = "jenkins-slave-key"
public_key = tls_private_key.rsa-slave.public_key_openssh
depends_on = [tls_private_key.rsa-slave]
}
resource "local_file" "jenkins-slave-key" {
content = tls_private_key.rsa-slave.private_key_pem
filename = "tfkey-slave"
depends_on = [tls_private_key.rsa-slave]
}
resource "aws_vpc" "jenkins-prod" {
cidr_block = "10.0.0.0/16"
tags = {
Name = "jenkins-prod-vpc"
}
}
resource "aws_subnet" "jenkins-master-subnet" {
vpc_id = aws_vpc.jenkins-prod.id
cidr_block = "10.0.1.0/24"
availability_zone = "eu-central-1a"
tags = {
Name = "jenkins-master-subnet"
}
}
resource "aws_subnet" "jenkins-slave-subnet" {
vpc_id = aws_vpc.jenkins-prod.id
cidr_block = "10.0.2.0/24"
availability_zone = "eu-central-1a"
tags = {
Name = "jenkins-slave-subnet"
}
}
resource "aws_security_group" "jenkins-master-sg" {
name = "jenkins-master-sg"
description = "jenkins-master-sg"
vpc_id = aws_vpc.jenkins-prod.id
ingress {
cidr_blocks = ["0.0.0.0/0"]
description = ""
from_port = 22
ipv6_cidr_blocks = []
prefix_list_ids = []
protocol = "tcp"
security_groups = []
self = false
to_port = 22
}
ingress {
cidr_blocks = ["0.0.0.0/0"]
description = ""
from_port = 8080
ipv6_cidr_blocks = []
prefix_list_ids = []
protocol = "tcp"
security_groups = []
self = false
to_port = 8080
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = []
}
}
resource "aws_security_group" "jenkins-slave-sg" {
name = "jenkins-slave-sg"
description = "jenkins-slave-sg"
vpc_id = aws_vpc.jenkins-prod.id
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = [aws_subnet.jenkins-slave-subnet.cidr_block]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = []
}
}
resource "aws_route_table" "jenkins-master-route-table" {
vpc_id = aws_vpc.jenkins-prod.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.jenkins_igw.id
}
tags = {
Name = "JenkinsMasterRouteTable"
}
}
resource "aws_route_table" "jenkins-slave-route-table" {
vpc_id = aws_vpc.jenkins-prod.id
tags = {
Name = "JenkinsSlaveRouteTable"
}
}
resource "aws_route_table_association" "jenkins-master-association" {
subnet_id = aws_subnet.jenkins-master-subnet.id
route_table_id = aws_route_table.jenkins-master-route-table.id
}
resource "aws_route_table_association" "jenkins-slave-association" {
subnet_id = aws_subnet.jenkins-slave-subnet.id
route_table_id = aws_route_table.jenkins-slave-route-table.id
}
resource "aws_internet_gateway" "jenkins_igw" {
vpc_id = aws_vpc.jenkins-prod.id
tags = {
Name = "JenkinsIGW"
}
}
resource "aws_network_acl" "jenkins-master-acl" {
vpc_id = aws_vpc.jenkins-prod.id
ingress {
rule_no = 100
protocol = "-1"
action = "allow"
cidr_block = "0.0.0.0/0"
from_port = 0
to_port = 0
}
egress {
rule_no = 100
protocol = "-1"
action = "allow"
cidr_block = "0.0.0.0/0"
from_port = 0
to_port = 0
}
tags = {
Name = "jenkins-master-acl"
}
}
resource "aws_network_acl" "jenkins-slave-acl" {
vpc_id = aws_vpc.jenkins-prod.id
ingress {
rule_no = 100
protocol = "-1"
action = "allow"
cidr_block = "0.0.0.0/0"
from_port = 0
to_port = 0
}
egress {
rule_no = 100
protocol = "-1"
action = "allow"
cidr_block = "0.0.0.0/0"
from_port = 0
to_port = 0
}
tags = {
Name = "jenkins-slave-acl"
}
}
resource "aws_instance" "jenkins-master" {
ami = "ami-004359656ecac6a95" #golden AMI with Jenkins ami-047decd705ef4b0eb
instance_type = "t2.micro"
availability_zone = "eu-central-1a"
subnet_id = aws_subnet.jenkins-master-subnet.id
key_name = "jenkins-master-key"
associate_public_ip_address = true
/*
provisioner "remote-exec" {
connection {
host = self.public_ip
user = "ec2-user"
private_key = "${file(var.private_key_path)}"
timeout = "30"
}
inline = ["sudo yum update"]
on_failure = continue
}
*/
}
resource "aws_network_interface_sg_attachment" "master-attachment" {
security_group_id = aws_security_group.jenkins-master-sg.id
network_interface_id = aws_instance.jenkins-master.primary_network_interface_id
}
/*resource "aws_instance" "jenkins-slave" {
ami = "ami-004359656ecac6a95"
instance_type = "t2.micro"
availability_zone = "eu-central-1a"
key_name = "jenkins-slave-key"
subnet_id = aws_subnet.jenkins-slave-subnet.id
}
resource "aws_network_interface_sg_attachment" "slave-attachment" {
security_group_id = aws_security_group.jenkins-slave-sg.id
network_interface_id = aws_instance.jenkins-slave.primary_network_interface_id
}
*/
output "instance_ip_addr" {
value = aws_instance.jenkins-master.public_ip
}
#git checkout add_button <- by wygenerować
#git push < wrzuca sie branch do repo
#git merge < po sprawdzeniu kodu moze przekształcić
#git remote update
#0 git clone (https lub ssh)
#1 git pull --rebase origin {nazwa branch}
#2 git checkout -b {nazwa nowego brancha np. data, funkcjonalność, fix}
# wprowadzasz modyfikacje kodu
#3 git add . {nazwa pliku po spacji, spacja jako separator lub kropka dla wszystkich plikow} << tworzy lokalnego snapshota
#4 git commit -m "nazwa zmiany" << zapisuje w/w snapshota
#5 git pull --rebase origin {nazwa brancha} <<upewniasz sie czy masz najnowsza wersje by uniknac konfliktow
#6 git push origin {nazwa brancha} -f << flaga force w przypadku problemow << wypycha branch do gita
#7 mozesz zmergowac branch do maina z poziomu