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: modules/redis-cluster/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,8 @@ Check the [example/](https://github.com/terraform-google-modules/terraform-googl
59
59
60
60
| Name | Description |
61
61
|------|-------------|
62
-
| discovery\_endpoints | Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one endpoint is supported |
62
+
| discovery\_endpoints | (Deprecated) Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one endpoint is supported |
63
+
| endpoints | Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one endpoint is supported |
63
64
| id | The redis cluster instance ID |
64
65
| psc\_connections | PSC connections for discovery of the cluster topology and accessing the cluster |
65
66
| psc\_service\_attachments | The PSC service attachments of the cluster |
Copy file name to clipboardExpand all lines: modules/redis-cluster/metadata.yaml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -157,6 +157,8 @@ spec:
157
157
defaultValue: []
158
158
outputs:
159
159
- name: discovery_endpoints
160
+
description: (Deprecated) Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one endpoint is supported
161
+
- name: endpoints
160
162
description: Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one endpoint is supported
Copy file name to clipboardExpand all lines: modules/redis-cluster/outputs.tf
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,10 +20,15 @@ output "id" {
20
20
}
21
21
22
22
output"discovery_endpoints" {
23
-
description="Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one endpoint is supported"
23
+
description="(Deprecated) Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one endpoint is supported"
0 commit comments