From ea45ecec6f1b3dac027f2d48194d7c0e73eeaac1 Mon Sep 17 00:00:00 2001 From: Khavish Anshudass Bhundoo Date: Sun, 16 Jan 2022 12:15:58 +0400 Subject: [PATCH] Add reader endpoint in outputs --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index b4478a0..d8f5090 100644 --- a/outputs.tf +++ b/outputs.tf @@ -8,6 +8,11 @@ output "elasticache_replication_group_primary_endpoint_address" { description = "The address of the endpoint for the primary node in the replication group." } +output "elasticache_replication_group_reader_endpoint_address" { + value = aws_elasticache_replication_group.default.reader_endpoint_address + description = "The address of the endpoint for the reader node in the replication group." +} + output "elasticache_replication_group_member_clusters" { value = aws_elasticache_replication_group.default.member_clusters description = "The identifiers of all the nodes that are part of this replication group."