generated from oracle-devrel/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
137 lines (104 loc) · 2.19 KB
/
variables.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
## Copyright (c) 2021 Oracle and/or its affiliates.
## All rights reserved. The Universal Permissive License (UPL), Version 1.0 as shown at http://oss.oracle.com/licenses/upl
variable "tenancy_ocid" {}
variable "region" {}
variable "compartment_ocid" {}
#variable "user_ocid" {}
#variable "fingerprint" {}
#variable "private_key_path" {}
variable "release" {
description = "Reference Architecture Release (OCI Architecture Center)"
default = "1.5.1"
}
variable "vcn_cidr" {
default = "10.0.0.0/16"
}
variable "label_prefix" {
default = ""
}
variable "http_port" {
default = 8080
}
variable "lb_http_port" {
default = 80
}
variable "lb_https_port" {
default = 443
}
variable "jnlp_port" {
default = 49187
}
variable "lb_shape" {
default = "flexible"
}
variable "flex_lb_min_shape" {
default = "10"
}
variable "flex_lb_max_shape" {
default = "100"
}
variable "use_bastion_service" {
default = true
}
variable "plugins" {
description = "Jenkins Plugins"
default = "git,ssh-slaves,oracle-cloud-infrastructure-compute"
}
variable "jenkins_version" {
default = "2.277.4"
}
variable "jenkins_password" {
}
variable "agent_count" {
default = "2"
}
variable "bastion_display_name" {
default = "JenkinsBastion"
}
variable "bastion_shape" {
default = "VM.Standard.E3.Flex"
}
variable "bastion_flex_shape_ocpus" {
default = 1
}
variable "bastion_flex_shape_memory" {
default = 1
}
variable "controller_shape" {
default = "VM.Standard.E3.Flex"
}
variable "controller_flex_shape_ocpus" {
default = 1
}
variable "controller_flex_shape_memory" {
default = 15
}
variable "agent_shape" {
default = "VM.Standard.E3.Flex"
}
variable "agent_flex_shape_ocpus" {
default = 1
}
variable "agent_flex_shape_memory" {
default = 20
}
variable "bastion_user" {
default = "opc"
}
variable "listener_ca_certificate" {
default = ""
}
variable "listener_private_key" {
default = ""
}
variable "listener_public_certificate" {
default = ""
}
variable "instance_os" {
description = "Operating system for compute instances"
default = "Oracle Linux"
}
variable "linux_os_version" {
description = "Operating system version for all Linux instances"
default = "7.9"
}