-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconstants.tf
51 lines (42 loc) · 935 Bytes
/
constants.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
# 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.
variable "devops_pipeline_image" {
type = string
default = "OL7_X86_64_STANDARD_10"
}
variable "devops_deploy_shape" {
type = string
default = "CI.Standard.E4.Flex"
}
variable "devops_memory" {
type = number
default = 2
}
variable "devops_ocpu" {
type = number
default = 2
}
variable "lb_health_check_timeout_in_millis" {
type = number
default = 3000
}
variable "lb_health_check_interval_ms" {
type = number
default = 5000
}
variable "lb_health_check_retries" {
type = number
default = 3
}
variable "lb_listener_cypher_suite" {
type = string
default = "oci-wider-compatible-ssl-cipher-suite-v1"
}
variable "db_version" {
type = string
default = "19c"
}
variable "db_license_model" {
type = string
default = "LICENSE_INCLUDED"
}