Skip to content

Commit 9bf7cad

Browse files
updated variable,readme and indentation
1 parent 174f2dd commit 9bf7cad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ No modules.
104104
|------|-------------|------|---------|:--------:|
105105
| <a name="input_app_version"></a> [app\_version](#input\_app\_version) | Version of the MySQL application that will be deployed. | `string` | `"8.0.29-debian-11-r9"` | no |
106106
| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | Version of the Mysql chart that will be used to deploy MySQL application. | `string` | `"9.2.0"` | no |
107-
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | specifies the name of the EKS cluster to deploy the MySQL application on. | `string` | `""` | no |
107+
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | Specifies the name of the EKS cluster to deploy the MySQL application on. | `string` | `""` | no |
108108
| <a name="input_create_namespace"></a> [create\_namespace](#input\_create\_namespace) | Specify whether or not to create the namespace if it does not already exist. Set it to true to create the namespace. | `string` | `true` | no |
109109
| <a name="input_mysqldb_backup_config"></a> [mysqldb\_backup\_config](#input\_mysqldb\_backup\_config) | 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. | `any` | <pre>{<br> "cron_for_full_backup": "",<br> "s3_bucket_region": "",<br> "s3_bucket_uri": ""<br>}</pre> | no |
110110
| <a name="input_mysqldb_backup_enabled"></a> [mysqldb\_backup\_enabled](#input\_mysqldb\_backup\_enabled) | Specifies whether to enable backups for MySQL database. | `bool` | `false` | no |

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ module "mysql" {
3434
s3_bucket_uri = "s3://mysqldumprestore/10-dump.sql"
3535
s3_bucket_region = "us-east-2"
3636
}
37-
mysqldb_exporter_enabled = false
37+
mysqldb_exporter_enabled = true
3838
}

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ variable "recovery_window_aws_secret" {
6262
variable "cluster_name" {
6363
type = string
6464
default = ""
65-
description = "specifies the name of the EKS cluster to deploy the MySQL application on."
65+
description = "Specifies the name of the EKS cluster to deploy the MySQL application on."
6666
}
6767

6868
variable "create_namespace" {

0 commit comments

Comments
 (0)