Skip to content

Commit 6b722ef

Browse files
Merge pull request #5 from RohitSquareops/Release-v1.0.0
Initial Release
2 parents f94de42 + c68207a commit 6b722ef

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,26 @@ This module creates a Redis master and one or more Redis slaves, depending on th
2020

2121
```hcl
2222
module "redis" {
23-
source = "https://github.com/sq-ia/terraform-kubernetes-redis.git"
23+
source = "squareops/redis/kubernetes"
2424
redis_config = {
2525
name = "redis"
2626
values_yaml = ""
2727
environment = "prod"
2828
architecture = "replication"
2929
slave_volume_size = "10Gi"
3030
master_volume_size = "10Gi"
31-
storage_class_name = "gp2"
31+
storage_class_name = "gp3"
3232
slave_replica_count = 2
3333
}
3434
grafana_monitoring_enabled = true
3535
recovery_window_aws_secret = 0
3636
}
3737
3838
```
39-
Refer [examples](https://github.com/sq-ia/terraform-kubernetes-redis/tree/main/examples/complete) for more details.
39+
Refer [examples](https://github.com/squareops/terraform-kubernetes-redis/tree/main/examples/complete) for more details.
4040

4141
## IAM Permissions
42-
The required IAM permissions to create resources from this module can be found [here](https://github.com/sq-ia/terraform-kubernetes-redis/blob/main/IAM.md)
42+
The required IAM permissions to create resources from this module can be found [here](https://github.com/squareops/terraform-kubernetes-redis/blob/main/IAM.md)
4343

4444
## Important Notes
4545
1. In order to enable the exporter, it is required to deploy Prometheus/Grafana first.
@@ -103,7 +103,7 @@ No modules.
103103

104104
To report an issue with a project:
105105

106-
1. Check the repository's [issue tracker](https://github.com/sq-ia/terraform-kubernetes-redis/issues) on GitHub
106+
1. Check the repository's [issue tracker](https://github.com/squareops/terraform-kubernetes-redis/issues) on GitHub
107107
2. Search to see if the issue has already been reported
108108
3. If you can't find an answer to your question in the documentation or issue tracker, you can ask a question by creating a new issue. Be sure to provide enough context and details so others can understand your problem.
109109

@@ -115,7 +115,7 @@ Apache License, Version 2.0, January 2004 (http://www.apache.org/licenses/).
115115

116116
To support a GitHub project by liking it, you can follow these steps:
117117

118-
1. Visit the repository: Navigate to the [GitHub repository](https://github.com/sq-ia/terraform-kubernetes-redis).
118+
1. Visit the repository: Navigate to the [GitHub repository](https://github.com/squareops/terraform-kubernetes-redis).
119119

120120
2. Click the "Star" button: On the repository page, you'll see a "Star" button in the upper right corner. Clicking on it will star the repository, indicating your support for the project.
121121

examples/complete/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ No requirements.
2121

2222
| Name | Source | Version |
2323
|------|--------|---------|
24-
| <a name="module_redis"></a> [redis](#module\_redis) | https://github.com/sq-ia/terraform-kubernetes-redis.git | n/a |
24+
| <a name="module_redis"></a> [redis](#module\_redis) | squareops/redis/kubernetes.git | n/a |
2525

2626
## Resources
2727

examples/complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ locals {
1010
}
1111

1212
module "redis" {
13-
source = "https://github.com/sq-ia/terraform-kubernetes-redis.git"
13+
source = "squareops/redis/kubernetes"
1414
redis_config = {
1515
name = local.name
1616
values_yaml = file("./helm/values.yaml")
1717
environment = local.environment
1818
architecture = "replication"
1919
slave_volume_size = "10Gi"
2020
master_volume_size = "10Gi"
21-
storage_class_name = "gp2"
21+
storage_class_name = "gp3"
2222
slave_replica_count = 2
2323
}
2424
grafana_monitoring_enabled = true

0 commit comments

Comments
 (0)