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
| <aname="input_grafana_monitoring_enabled"></a> [grafana\_monitoring\_enabled](#input\_grafana\_monitoring\_enabled)| Specify whether or not to deploy Redis exporter to collect Redis metrics for monitoring in Grafana. |`bool`|`false`| no |
96
99
| <aname="input_namespace"></a> [namespace](#input\_namespace)| Namespace where the Redis resources will be deployed. |`string`|`"redis"`| no |
97
100
| <aname="input_recovery_window_aws_secret"></a> [recovery\_window\_aws\_secret](#input\_recovery\_window\_aws\_secret)| Number of days that AWS Secrets Manager will wait before it can delete the secret. The value can be 0 to force deletion without recovery, or a range from 7 to 30 days. |`number`|`0`| no |
98
-
| <aname="input_redis_config"></a> [redis\_config](#input\_redis\_config)| Specify the configuration settings for Redis, including the name, environment, storage options, replication settings, store password to secret manager and custom YAML values. |`any`| <pre>{<br> "architecture": "replication",<br> "environment": "",<br> "master_volume_size": "",<br> "name": "",<br> "slave_replica_count": 1,<br> "slave_volume_size": "",<br> "storage_class_name": "",<br> "store_password_to_secret_manager": "",<br> "values_yaml": ""<br>}</pre> | no |
101
+
| <aname="input_redis_config"></a> [redis\_config](#input\_redis\_config)| Specify the configuration settings for Redis, including the name, environment, storage options, replication settings, store password to secret manager and custom YAML values. |`any`| <pre>{<br> "architecture": "replication",<br> "environment": "",<br> "master_volume_size": "",<br> "name": "",<br> "slave_replica_count": 1,<br> "slave_volume_size": "",<br> "storage_class_name": "",<br> "store_password_to_secret_manager": true,<br> "values_yaml": ""<br>}</pre> | no |
102
+
| <aname="input_secret_provider_type"></a> [secret\_provider\_type](#input\_secret\_provider\_type)| Choose where secrets will be stored (aws, gcp) |`string`|`"aws"`| no |
Copy file name to clipboardExpand all lines: examples/complete/README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,13 @@
6
6
### [SquareOps Technologies](https://squareops.com/) Your DevOps Partner for Accelerating cloud journey.
7
7
<br>
8
8
This example will be very useful for users who are new to a module and want to quickly learn how to use it. By reviewing the examples, users can gain a better understanding of how the module works, what features it supports, and how to customize it to their specific needs.
9
+
10
+
## Usage
11
+
12
+
Use the provider file as per your need.
13
+
- If deploying into AWS EKS use `provider-aws.tf` file and remove `provider-gcp.tf` file.
14
+
- If deploying into Google GKE use `provider-gcp.tf` file and remove `provider-aws.tf` file.
15
+
9
16
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
|[aws_eks_cluster.cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/eks_cluster)| data source |
31
39
|[aws_eks_cluster_auth.cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/eks_cluster_auth)| data source |
40
+
|[google_client_config.default](https://registry.terraform.io/providers/hashicorp/google/latest/docs/data-sources/client_config)| data source |
41
+
|[google_container_cluster.primary](https://registry.terraform.io/providers/hashicorp/google/latest/docs/data-sources/container_cluster)| data source |
Copy file name to clipboardExpand all lines: variables.tf
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ variable "redis_config" {
8
8
slave_replica_count =1
9
9
slave_volume_size =""
10
10
storage_class_name =""
11
-
store_password_to_secret_manager =""
11
+
store_password_to_secret_manager =true
12
12
values_yaml =""
13
13
}
14
14
description="Specify the configuration settings for Redis, including the name, environment, storage options, replication settings, store password to secret manager and custom YAML values."
0 commit comments