-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
110 lines (103 loc) · 1.71 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
variable "project" {
type = string
}
variable "environment" {
type = string
}
variable "cluster" {
type = string
}
variable "namespace" {
type = string
}
variable "vpc_id" {
type = string
}
variable "subnet_ids" {
type = list(string)
}
variable "oidc_bucket_name" {
type = string
}
variable "provider_domain" {
type = string
default = ""
}
variable "consumer_domain" {
type = string
}
variable "release_image" {
type = string
}
variable "workers_instance_type" {
type = string
default = "t3a.2xlarge"
}
variable "worker_autoscaling" {
type = object({
min = number
max = number
enabled = bool
})
default = {
min = 0
max = 0
enabled = false
}
}
variable "worker_replicas" {
type = number
default = 1
}
variable "pull_secret" {
type = string
sensitive = true
}
variable "ssh_key" {
type = string
sensitive = true
}
variable "fips_enabled" {
type = bool
default = false
}
variable "github_oauth_enabled" {
type = bool
default = true
}
variable "github_oauth_authorized_teams" {
type = list(string)
default = ["3scale/operations"]
}
variable "oauth_endpoint_certificate_secret" {
type = string
default = ""
}
variable "deploy_vault_app_role" {
type = bool
default = false
}
variable "managedclusterset" {
type = string
default = "hypershift"
}
variable "managedcluster_extra_labels" {
type = list(string)
default = []
}
variable "tolerations" {
type = list(object({
key = string
operator = string
value = string
effect = string
}))
default = []
}
variable "node_selector" {
type = list(object({
key = string
value = string
}))
default = []
}