diff --git a/modules/data-stores/elasticache-redis-cluster/outputs.tf b/modules/data-stores/elasticache-redis-cluster/outputs.tf index af4d0cf..76f2a98 100644 --- a/modules/data-stores/elasticache-redis-cluster/outputs.tf +++ b/modules/data-stores/elasticache-redis-cluster/outputs.tf @@ -3,6 +3,18 @@ * Outputs. */ +output "id" { + value = "${aws_elasticache_replication_group.redis_replication_group.id}" +} + output "configuration_endpoint_address" { value = "${aws_elasticache_replication_group.redis_replication_group.configuration_endpoint_address}" } + +output "primary_endpoint_address" { + value = "${aws_elasticache_replication_group.redis_replication_group.primary_endpoint_address}" +} + +output "port" { + value = "${aws_elasticache_replication_group.redis_replication_group.port}" +}