Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrampeter committed Dec 10, 2024
1 parent d7af751 commit 443b917
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
File renamed without changes.
14 changes: 7 additions & 7 deletions modules/redis-sentinel/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
output "hostname" {
value = aws_route53_record.sentinel.fqdn
value = aws_route53_record.sentinel.fqdn
description = "The hostname of the Redis Sentinel"
}

output "redis_port" {
value = var.redis_port
value = var.redis_port
description = "The port of the Redis"
}

output "redis_sentinel_port" {
value = var.redis_sentinel_port
value = var.redis_sentinel_port
description = "The port of the Redis Sentinel"
}

output "redis_sentinel_leader_name" {
value = var.redis_sentinel_leader_name
value = var.redis_sentinel_leader_name
description = "The name of the Redis Sentinel leader"
}

output "redis_sentinel_password" {
value = var.redis_sentinel_password
value = var.redis_sentinel_password
description = "value of the Redis Sentinel password"
}

output "password" {
value = var.redis_password
value = var.redis_password
description = "value of the Redis password"
}

Expand All @@ -34,6 +34,6 @@ output "use_password_auth" {
}

output "use_tls" {
value = var.use_tls ? true : false
value = var.use_tls ? true : false
description = "A boolean which indicates if TLS is required by the Redis"
}

0 comments on commit 443b917

Please sign in to comment.