forked from squareops/terraform-kubernetes-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
201 lines (174 loc) · 5.35 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
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
variable "mysqldb_config" {
type = any
default = {
name = ""
environment = ""
values_yaml = ""
architecture = ""
custom_database = ""
storage_class_name = ""
custom_user_username = ""
primary_db_volume_size = ""
secondary_db_volume_size = ""
secondary_db_replica_count = 1
store_password_to_secret_manager = true
}
description = "Specify the configuration settings for MySQL, including the name, environment, storage options, replication settings, and custom YAML values."
}
variable "mysqldb_custom_credentials_enabled" {
type = bool
default = false
description = "Specifies whether to enable custom credentials for MySQL database."
}
variable "mysqldb_custom_credentials_config" {
type = any
default = {
root_user = ""
root_password = ""
custom_username = ""
custom_user_password = ""
replication_user = ""
replication_password = ""
exporter_user = ""
exporter_password = ""
}
description = "Specify the configuration settings for MySQL to pass custom credentials during creation"
}
variable "app_version" {
type = string
default = "8.0.29-debian-11-r9"
description = "Version of the MySQL application that will be deployed."
}
variable "chart_version" {
type = string
default = "9.2.0"
description = "Version of the Mysql chart that will be used to deploy MySQL application."
}
variable "namespace" {
type = string
default = "mysqldb"
description = "Name of the Kubernetes namespace where the MYSQL deployment will be deployed."
}
variable "mysqldb_backup_enabled" {
type = bool
default = false
description = "Specifies whether to enable backups for MySQL database."
}
variable "mysqldb_backup_config" {
type = any
default = {
bucket_uri = ""
s3_bucket_region = ""
cron_for_full_backup = ""
}
description = "configuration options for MySQL database backups. It includes properties such as the S3 bucket URI, the S3 bucket region, and the cron expression for full backups."
}
variable "mysqldb_exporter_enabled" {
type = bool
default = false
description = "Specify whether or not to deploy Mysql exporter to collect Mysql metrics for monitoring in Grafana."
}
variable "recovery_window_aws_secret" {
type = number
default = 0
description = "Number of days that AWS Secrets Manager will wait before deleting a secret. This value can be set to 0 to force immediate deletion, or to a value between 7 and 30 days to allow for recovery."
}
variable "cluster_name" {
type = string
default = ""
description = "Specifies the name of the EKS cluster to deploy the MySQL application on."
}
variable "create_namespace" {
type = string
description = "Specify whether or not to create the namespace if it does not already exist. Set it to true to create the namespace."
default = true
}
variable "mysqldb_restore_enabled" {
type = bool
default = false
description = "Specifies whether to enable restoring dump to the MySQL database."
}
variable "mysqldb_restore_config" {
type = any
default = {
bucket_uri = ""
file_name = ""
s3_bucket_region = ""
}
description = "Configuration options for restoring dump to the MySQL database."
}
variable "bucket_provider_type" {
type = string
default = "gcs"
description = "Choose what type of provider you want (s3, gcs)"
}
variable "project_id" {
description = "Google Cloud project ID"
type = string
default = ""
}
variable "iam_role_arn_backup" {
description = "IAM role ARN for backup (AWS)"
type = string
default = ""
}
variable "service_account_backup" {
description = "Service account for backup (GCP)"
type = string
default = ""
}
variable "iam_role_arn_restore" {
description = "IAM role ARN for restore (AWS)"
type = string
default = ""
}
variable "service_account_restore" {
description = "Service account for restore (GCP)"
type = string
default = ""
}
variable "root_password" {
description = "Root password for MongoDB"
type = string
default = ""
}
variable "metric_exporter_pasword" {
description = "Metric exporter password for MongoDB"
type = string
default = ""
}
variable "custom_user_password" {
description = "custom user password for MongoDB"
type = string
default = ""
}
variable "mysqldb_replication_user_password" {
description = "Replicator password for MongoDB"
type = string
default = ""
}
variable "resource_group_name" {
description = "Azure Resource Group name"
type = string
default = ""
}
variable "resource_group_location" {
description = "Azure region"
type = string
default = "East US"
}
variable "azure_storage_account_name" {
description = "Azure storage account name"
type = string
default = ""
}
variable "azure_storage_account_key" {
description = "Azure storage account key"
type = string
default = ""
}
variable "azure_container_name" {
description = "Azure container name"
type = string
default = ""
}