You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ The required IAM permissions to create resources from this module can be found [
61
61
5. To deploy Prometheus/Grafana, please follow the installation instructions for each tool in their respective documentation.
62
62
6. Once Prometheus and Grafana are deployed, the exporter can be configured to scrape metrics data from your application or system and send it to Prometheus.
63
63
7. Finally, you can use Grafana to create custom dashboards and visualize the metrics data collected by Prometheus.
64
-
8. This module is compatible with EKS version 1.23, which is great news for users deploying the module on an EKS cluster running that version. Review the module's documentation, meet specific configuration requirements, and test thoroughly after deployment to ensure everything works as expected.
64
+
8. This module is compatible with EKS version 1.23,1.24,1.25,1.26 and 1.27, which is great news for users deploying the module on an EKS cluster running that version. Review the module's documentation, meet specific configuration requirements, and test thoroughly after deployment to ensure everything works as expected.
65
65
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Copy file name to clipboardExpand all lines: variables.tf
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,27 @@ variable "mysqldb_config" {
15
15
description="Specify the configuration settings for MySQL, including the name, environment, storage options, replication settings, and custom YAML values."
16
16
}
17
17
18
+
variable"mysqldb_custom_credentials_enabled" {
19
+
type=bool
20
+
default=false
21
+
description="Specifies whether to enable custom for MySQL database."
22
+
}
23
+
24
+
variable"mysqldb_custom_credentials_config" {
25
+
type=any
26
+
default={
27
+
root_user =""
28
+
root_password =""
29
+
custom_username =""
30
+
custom_user_password =""
31
+
replication_user =""
32
+
replication_password =""
33
+
exporter_user =""
34
+
exporter_password =""
35
+
}
36
+
description="Specify the configuration settings for MySQL to pass custom credentials during creation"
0 commit comments