forked from oracle-quickstart/appstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-repo.tf
349 lines (295 loc) · 10.3 KB
/
config-repo.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
# Copyright (c) 2023, Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
# The "config-repo" is used to store the required configuration files and the
# dependent libs such as the tomcat jar in the WAR case, apm jar for monitoring,
# the wallet to connect to ADB-S, etc. If the stack is re-executed Terraform knows
# how to reuse previous resources (update or drop+create).
# creates the git repo called "config-repo"
resource "oci_devops_repository" "config_repo" {
name = local.config_repo_name
project_id = local.project_id
repository_type = "HOSTED"
default_branch = "main"
description = "Files needed to create the image and configure the application"
count = (local.use-image ? 0 : 1)
}
# creates necessary files to configure Docker image
# creates the Dockerfile
resource "local_file" "dockerfile" {
filename = "${path.module}/Dockerfile"
content = data.template_file.dockerfile.rendered
}
# creates the server.xml
resource "local_file" "server_xml" {
filename = "${path.module}/server.xml"
content = data.template_file.server_xml[0].rendered
count = (var.application_type == "WAR") ? 1 : 0
}
# create catalina.sh
resource "local_file" "catalina" {
filename = "${path.module}/catalina.sh"
content = data.template_file.catalina_sh[0].rendered
count = (var.application_type == "WAR") ? 1 : 0
}
# creates the OCI config file
resource "local_file" "wallet" {
filename = "${path.module}/wallet.zip.b64"
content = oci_database_autonomous_database_wallet.database_wallet.content
}
# creates the OCI config file
resource "local_file" "oci_build_config" {
filename = "${path.module}/build_spec.yaml"
content = data.template_file.oci_build_config.rendered
}
# create temporary deploy files that will be concatenated with script
resource "local_file" "deploy_image" {
filename = "${path.module}/deploy${count.index}.sh"
content = data.template_file.deploy_script[count.index].rendered
count = var.nb_copies
}
# Update the config repo with the required bits in the WAR case:
resource "null_resource" "create_config_repo_war" {
depends_on = [
oci_devops_repository.config_repo,
local_file.dockerfile,
# local_file.api_key_pem,
# local_file.oci_config,
local_file.wallet,
local_file.self_signed_certificate,
local_file.oci_build_config,
random_password.wallet_password,
oci_identity_policy.user_manage_all_policy
]
# clone new repository
provisioner "local-exec" {
command = "git clone ${local.config_repo_url}"
on_failure = fail
working_dir = "${path.module}"
}
# clone new repository
provisioner "local-exec" {
command = "git config --global user.email \"${local.login}\""
on_failure = fail
working_dir = "${path.module}"
}
# clone new repository
provisioner "local-exec" {
command = "git config --global user.name \"${local.service-username}\""
on_failure = fail
working_dir = "${path.module}"
}
# copy Dockerfile to app directory
provisioner "local-exec" {
command = "cp Dockerfile ./${local.config_repo_name}/Dockerfile"
on_failure = fail
working_dir = "${path.module}"
}
# copy server.xml to app directory
provisioner "local-exec" {
command = "cp server.xml ./${local.config_repo_name}/server.xml"
on_failure = fail
working_dir = "${path.module}"
}
# copy catalina.sh to app directory
provisioner "local-exec" {
command = "cp catalina.sh ./${local.config_repo_name}/catalina.sh"
on_failure = fail
working_dir = "${path.module}"
}
# copy wallet to app directory
provisioner "local-exec" {
command = "cat wallet.zip.b64 | base64 --decode > ./${local.config_repo_name}/wallet.zip"
on_failure = fail
working_dir = "${path.module}"
}
# copy config to app directory
provisioner "local-exec" {
command = "cp build_spec.yaml ./${local.config_repo_name}/build_spec.yaml"
on_failure = fail
working_dir = "${path.module}"
}
provisioner "local-exec" {
command = "openssl pkcs12 -export -in certificate.pem -inkey private-key.pem -name self_signed -password \"pass:${random_password.keystore_password.result}\" > server.p12"
on_failure = fail
working_dir = "${path.module}"
}
provisioner "local-exec" {
command = "keytool -importkeystore -noprompt -srckeystore server.p12 -destkeystore self.keystore -srcstoretype pkcs12 -alias self_signed -srcstorepass \"${random_password.keystore_password.result}\" -deststorepass \"${random_password.keystore_password.result}\""
on_failure = fail
working_dir = "${path.module}"
}
# copy keystore
provisioner "local-exec" {
command = "cp self.keystore ./${local.config_repo_name}/self.keystore"
on_failure = fail
working_dir = "${path.module}"
}
# add wallet to git
provisioner "local-exec" {
command = "git add wallet.zip"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# add build.yaml to git
provisioner "local-exec" {
command = "git add build_spec.yaml"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# add Dockerfile to git
provisioner "local-exec" {
command = "git add Dockerfile"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# add catalina.sh to git
provisioner "local-exec" {
command = "git add catalina.sh"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# add server.xml to git
provisioner "local-exec" {
command = "git add server.xml"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# add keystore to git
provisioner "local-exec" {
command = "git add ./self.keystore"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# Commit changes
provisioner "local-exec" {
command = "git commit -m \"Initial commit by Terraform script\""
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# Push changes
provisioner "local-exec" {
command = "git push"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
count = (var.application_type == "WAR") ? 1 : 0
}
# Update the config repo with the required bits in the JAR case:
resource "null_resource" "create_config_repo_jar" {
depends_on = [
oci_devops_repository.config_repo,
local_file.dockerfile,
# local_file.api_key_pem,
# local_file.oci_config,
local_file.wallet,
local_file.self_signed_certificate,
local_file.oci_build_config,
random_password.wallet_password,
oci_identity_policy.user_manage_all_policy
]
# clone new repository
provisioner "local-exec" {
command = "git clone ${local.config_repo_url}"
on_failure = fail
working_dir = "${path.module}"
}
# clone new repository
provisioner "local-exec" {
command = "git config --global user.email \"${local.login}\""
on_failure = fail
working_dir = "${path.module}"
}
# clone new repository
provisioner "local-exec" {
command = "git config --global user.name \"${local.service-username}\""
on_failure = fail
working_dir = "${path.module}"
}
# copy Dockerfile to app directory
provisioner "local-exec" {
command = "cp Dockerfile ./${local.config_repo_name}/Dockerfile"
on_failure = fail
working_dir = "${path.module}"
}
# copy wallet to app directory
provisioner "local-exec" {
command = "cat wallet.zip.b64 | base64 --decode > ./${local.config_repo_name}/wallet.zip"
on_failure = fail
working_dir = "${path.module}"
}
# copy config to app directory
provisioner "local-exec" {
command = "cp build_spec.yaml ./${local.config_repo_name}/build_spec.yaml"
on_failure = fail
working_dir = "${path.module}"
}
provisioner "local-exec" {
command = "openssl pkcs12 -export -in certificate.pem -inkey private-key.pem -name self_signed -password \"pass:${random_password.keystore_password.result}\" > server.p12"
on_failure = fail
working_dir = "${path.module}"
}
provisioner "local-exec" {
command = "keytool -importkeystore -noprompt -srckeystore server.p12 -destkeystore self.keystore -srcstoretype pkcs12 -alias self_signed -srcstorepass \"${random_password.keystore_password.result}\" -deststorepass \"${random_password.keystore_password.result}\""
on_failure = fail
working_dir = "${path.module}"
}
# copy keystore
provisioner "local-exec" {
command = "cp self.keystore ./${local.config_repo_name}/self.keystore"
on_failure = fail
working_dir = "${path.module}"
}
# add wallet to git
provisioner "local-exec" {
command = "git add wallet.zip"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# add build.yaml to git
provisioner "local-exec" {
command = "git add build_spec.yaml"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# add Dockerfile to git
provisioner "local-exec" {
command = "git add Dockerfile"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# add keystore to git
provisioner "local-exec" {
command = "git add ./self.keystore"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# Commit changes
provisioner "local-exec" {
command = "git commit -m \"Initial commit by Terraform script\""
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
# Push changes
provisioner "local-exec" {
command = "git push"
on_failure = fail
working_dir = "${path.module}/${local.config_repo_name}"
}
count = (var.application_type == "JAR") ? 1 : 0
}
# Repository used to store deployment shell script
resource "oci_artifacts_repository" "application_repository" {
compartment_id = var.compartment_id
is_immutable = true
repository_type = "GENERIC"
display_name = "${var.application_name}-repository"
}
resource "oci_generic_artifacts_content_artifact_by_path" "update_container_instance_script" {
depends_on = [
oci_artifacts_repository.application_repository
]
artifact_path = local.deploy_artifact_path
repository_id = oci_artifacts_repository.application_repository.id
version = local.deploy_artifact_version
source = "${path.module}/update_container_instance.sh"
}