generated from oracle-devrel/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema.yaml
476 lines (431 loc) · 11.1 KB
/
schema.yaml
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
title: "OCI Starter: Create Source Code and Terraform"
stackDescription: "Create source code and Terraform. The code generated is stored in a git repository in DevOps"
description: "Create source code and Terraform. The code generated is stored in a git repository in DevOps"
schemaVersion: 1.1.0
version: "20221004"
locale: "en"
#################
# Variable Groups
#################
variableGroups:
- title: General Configuration
visible: false
variables:
- tenancy_ocid
- compartment_ocid
- region
- current_user_ocid
- title: Starter Project
visible: true
variables:
- prefix
- compartment_id
- title: Application
visible: true
variables:
- language
- deploy_type
- java_framework
- java_vm
- java_version
- title: User Interface
visible: true
variables:
- ui_type
- title: Deployment
visible: true
variables:
- kubernetes_strategy
- oke_strategy
- oke_ocid
- title: Network
visible: true
variables:
- vcn_strategy
- vcn_ocid
- subnet_ocid
- title: "Database"
visible: true
variables:
- db_type
- db_existing_strategy
- atp_ocid
- db_ocid
- mysql_ocid
- db_user
- db_password
- title: Security
visible: true
variables:
- oci_username
- vault_strategy
- vault_ocid
- secret_strategy
- vault_secret_authtoken_ocid
- oci_token
#################
# Output Groups
#################
######################
# Variable Definitions
######################
variables:
###################### Starter Project
prefix:
type: string
title: Resource Name Prefix
description: The names of all compute and network resources will begin with this prefix. It can only contain letters or numbers and must begin with a letter.
required: true
compartment_id:
type: oci:identity:compartment:id
title: "Compartment"
description: "The compartment in which to create resources"
required: true
default: ${compartment_ocid}
language:
visible: true
type: enum
title: Language
description: Choose the Language for the middle-tier
enum:
- "Java"
- "Node"
- "Python"
- "Apache"
- "Nginx"
default: "Java"
required: true
deploy_type:
visible: true
type: enum
title: Deployment
description: Choose the type of deployment
enum:
- "Kubernetes"
- "Virtual Machine"
- "Function"
default: ""
required: true
java_framework:
visible:
and:
- eq:
- ${language}
- "Java"
- or:
- eq:
- ${deploy_type}
- "Kubernetes"
- eq:
- ${deploy_type}
- "Virtual Machine"
type: enum
title: Java Framework
description: Java Framework
enum:
- "SpringBoot"
- "Tomcat"
- "Helidon"
default: ''
required: true
java_vm:
visible:
and:
- eq:
- ${language}
- "Java"
- or:
- eq:
- ${deploy_type}
- "Kubernetes"
- eq:
- ${deploy_type}
- "Virtual Machine"
type: enum
title: Java Framework
description: Java Virtual Machine
enum:
- "JDK"
- "GraalVM"
default: "JDK"
required: true
java_version:
visible:
and:
- and:
- eq:
- ${language}
- "Java"
- not:
- eq:
- ${java_framework}
- "Helidon"
- or:
- eq:
- ${deploy_type}
- "Kubernetes"
- eq:
- ${deploy_type}
- "Virtual Machine"
type: enum
title: Java Framework
description: Java Virtual Machine
enum:
- "8"
- "11"
- "17"
default: "17"
required: true
###################### Network
vcn_strategy:
visible: true
type: enum
title: Virtual Cloud Network Strategy
description: Create or use an existing VCN. If you use an existing VCN, <a target="_blank" href="https://docs.oracle.com/en/cloud/paas/weblogic-cloud/user/you-begin-oracle-weblogic-cloud.html#GUID-E9B66B15-30A3-4D00-B031-F9ADDD1AB46E">validate the existing network setup</a>.
enum:
- "Create New VCN"
- "Use Existing VCN"
required: true
default: "Use Existing VCN"
vcn_ocid:
visible:
eq:
- ${vcn_strategy}
- "Use Existing VCN"
type: oci:core:vcn:id
dependsOn:
compartmentId: ${compartment_id}
required: true
default: ''
title: Existing Network
description: An existing Virtual Cloud Network (VCN) in which to create the compute instances, network resources, and load balancers. If not specified, a new VCN is created.
subnet_ocid:
visible:
eq:
- ${vcn_strategy}
- "Use Existing VCN"
type: oci:core:subnet:id
dependsOn:
vcnId: ${vcn_ocid}
compartmentId: ${compartment_id}
default: ''
required: true
title: Existing Subnet
description: An existing subnet. This subnet must already be present in the chosen VCN.
###################### Deployment
kubernetes_strategy:
visible:
eq:
- ${deploy_type}
- "Kubernetes"
type: enum
enum:
- "OKE"
- "Docker image only"
default: ""
title: Type of Kubernetes Cluster
description: Type of Kubernetes Cluster
oke_strategy:
visible:
and:
- eq:
- ${deploy_type}
- "Kubernetes"
- eq:
- ${kubernetes_strategy}
- "OKE"
type: enum
title: OKE Strategy
description: Create or use an existing VCN. If you use an existing VCN, <a target="_blank" href="https://docs.oracle.com/en/cloud/paas/weblogic-cloud/user/you-begin-oracle-weblogic-cloud.html#GUID-E9B66B15-30A3-4D00-B031-F9ADDD1AB46E">validate the existing network setup</a>.
enum:
- "Create New OKE"
- "Use Existing OKE"
required: true
default: "Use Existing OKE"
oke_ocid:
visible:
and:
- eq:
- ${deploy_type}
- "Kubernetes"
- eq:
- ${kubernetes_strategy}
- "OKE"
- eq:
- ${oke_strategy}
- "Use Existing OKE"
type: oci:container:cluster:id
dependsOn:
vcnId: ${vcn_ocid}
compartmentId: ${compartment_id}
default: ''
required: true
title: Existing OKE Cluster
description: Existing OKE Cluster
###################### Database
db_type:
visible: true
type: enum
title: Database Type
description: Choose the database strategy for Application Database
enum:
- "Autonomous Transaction Processing Database"
- "Database System"
- "MySQL"
default: "Autonomous Transaction Processing Database"
required: true
db_existing_strategy:
visible: true
type: enum
title: Database Strategy
description: Create or use an existing Database</a>.
enum:
- "Create New DB"
- "Use Existing DB"
required: true
default: "Use Existing OKE"
atp_ocid:
visible:
and:
- eq:
- ${db_type}
- "Autonomous Transaction Processing Database"
- eq:
- ${db_existing_strategy}
- "Use Existing DB"
type: oci:database:autonomousdatabase:id
dependsOn:
compartmentId: ${compartment_id}
required: true
title: Autonomous Database
description: The Autonomous Transaction Processing (ATP) database in which to provision the schemas for the Application Database
db_ocid:
visible:
and:
- eq:
- ${db_type}
- "Database System"
- eq:
- ${db_existing_strategy}
- "Use Existing DB"
type: oci:database:dbsystem:id
dependsOn:
compartmentId: ${compartment_id}
required: true
title: Application Database System
description: The Oracle Cloud Infrastructure DB System to use for the Application Database Configuration.
mysql_ocid:
visible:
and:
- eq:
- ${db_type}
- "MySQL"
- eq:
- ${db_existing_strategy}
- "Use Existing DB"
type: string
dependsOn:
compartmentId: ${compartment_id}
required: true
title: MySQL Database
description: MySQL Database
db_user:
visible:
not:
- eq:
- ${db_existing_strategy}
- "Create New DB"
type: string
required: true
title: Database User Name
description: Database User
db_password:
visible: true
type: password
required: true
title: Database Password
description: Database Password
###################### User Interface
ui_type:
visible: true
type: enum
title: User Interface
description: Choose the User Interface Strategy
enum:
- "HTML"
- "ReactJS"
- "None"
default: "HTML"
required: true
###################### Security
oci_username:
type: string
required: true
visibile: true
title: "OCI user"
description: "For a federated user (single sign-on with an identity provider), enter the username in the following format: Federation/UserName. For example, if you use OCI's identity provider, your login would be, oracleidentitycloudservice/[email protected]. If you are using OCI's direct sign-in, enter the username in the following format: YourUserName. For example, Acme/alice_jones. Your password is the auth token you created previously."
vault_strategy:
visible: true
type: enum
title: Security Vault
description: Create or use an existing Vault
enum:
- "Create New Vault"
- "Use Existing Vault"
required: true
default: "Use Existing Vault"
vault_ocid:
visible:
eq:
- ${vault_strategy}
- "Use Existing Vault"
type: oci:kms:vault:id
dependsOn:
compartmentId: ${compartment_id}
default: ''
required: true
title: Existing Vault
description: An existing Vault
secret_strategy:
visible:
eq:
- ${vault_strategy}
- "Use Existing Vault"
type: enum
title: Secret Strategy
description: Create or use an existing Secret
enum:
- "Create New Secret"
- "Use Existing Secret"
required: true
default: "Use Existing Secret"
vault_secret_authtoken_ocid:
visible:
and:
- eq:
- ${vault_strategy}
- "Use Existing Vault"
- eq:
- ${secret_strategy}
- "Use Existing Secret"
type: oci:kms:secret:id
dependsOn:
compartmentId: ${compartment_id}
default: ''
required: true
title: Existing Secret for the AuthToken
description: Existing Secret for the AuthToken
oci_token:
visible:
or:
- eq:
- ${vault_strategy}
- "Create New Vault"
- eq:
- ${secret_strategy}
- "Create New Secret"
type: password
# type: string
required: true
title: "OCI user auth token"
description: "You can get the auth token from your Profile menu -> click User Settings -> On left side click *Auth Tokens -> Generate Token"