Skip to content

Commit 82fa4bd

Browse files
authored
feat: Added psc_service_attachments to outputs of redis-cluster module (#276)
1 parent 9a46b1e commit 82fa4bd

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

modules/redis-cluster/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ module "redis_cluster" {
5353
| discovery\_endpoints | Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one endpoint is supported |
5454
| id | The redis cluster instance ID |
5555
| psc\_connections | PSC connections for discovery of the cluster topology and accessing the cluster |
56+
| psc\_service\_attachments | The PSC service attachments of the cluster |
5657
| redis\_cluster | The redis cluster created |
5758

5859
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

modules/redis-cluster/outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ output "psc_connections" {
2929
value = google_redis_cluster.redis_cluster.psc_connections
3030
}
3131

32+
output "psc_service_attachments" {
33+
description = "The PSC service attachments of the cluster"
34+
value = google_redis_cluster.redis_cluster.psc_service_attachments
35+
}
36+
3237
output "redis_cluster" {
3338
description = "The redis cluster created"
3439
value = google_redis_cluster.redis_cluster

0 commit comments

Comments
 (0)