-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
108 lines (91 loc) · 2.32 KB
/
variables.tf
File metadata and controls
108 lines (91 loc) · 2.32 KB
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
variable "release_name" {
description = "This is the name of the release which also used as a prefix or suffix for the resources"
type = string
default = "gitlab"
}
variable "release_max_history" {
description = "Maximum saved revisions per release"
type = number
default = 10
}
variable "release_namespace" {
description = "Namespace name where you want to deploy the release. If empty, `release_name` will be used."
type = string
default = ""
}
variable "cluster_name" {
description = "EKS cluster name where you want to deploy the release"
type = string
}
variable "values" {
description = "Custom values.yaml file for the Helm chart"
type = any
default = []
}
variable "gitlab_chart_version" {
description = "Version of the gitlab chart"
type = string
default = "7.8.1"
}
variable "database_password" {
type = string
description = "Password to access PostgreSQL database"
sensitive = true
}
variable "registry_database_password" {
type = string
description = "Password to access Registry PostgreSQL database"
sensitive = true
default = null
}
variable "redis_password" {
type = string
description = "Password to access Redis database"
sensitive = true
}
variable "smtp_user" {
type = string
default = ""
description = "SMTP Username"
}
variable "smtp_password" {
type = string
default = ""
description = "SMTP Password"
sensitive = true
}
variable "omniauth_providers" {
description = "OmniAuth providers"
type = map(string)
default = {}
}
variable "ldap_password" {
description = "LDAP password"
type = string
default = ""
}
variable "namespace_labels" {
description = "Labels for GitLab namespace"
type = map(string)
default = {}
}
variable "bucket_prefix" {
description = "Prefix used for S3 buckets"
type = string
default = ""
}
variable "buckets_lifecycles" {
description = "Lifecycle rules for buckets"
type = map(string)
default = {}
}
variable "buckets_versioning" {
description = "Versioning for buckets"
type = map(bool)
default = {}
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}