Skip to content

Commit 6ee02a7

Browse files
committed
update + fmt
1 parent 48166fc commit 6ee02a7

File tree

12 files changed

+7
-7
lines changed

12 files changed

+7
-7
lines changed

modules/redis-sentinel copy/files/compose.yaml

Whitespace-only changes.

modules/redis standalone/locals.tf renamed to modules/redis-standalone-mtls/locals.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ locals {
55
redis_user_data_template = "${path.module}/files/script.sh"
66
redis_user_data = templatefile(local.redis_user_data_template, {
77
redis_init = base64encode(file(local.redis_init_path))
8-
fullchain = var.fullchain
9-
privkey = var.privkey
8+
fullchain = var.fullchain
9+
privkey = var.privkey
1010
isrgrootx1 = var.ca_cert
1111
redis_conf = base64encode(templatefile(local.redis_conf_path, {
1212
}))
1313
compose = base64encode(templatefile(local.compose_path, {
14-
redis_port = var.redis_port
14+
redis_port = var.redis_port
1515
}))
1616
})
17-
compose_path = "${path.module}/files/compose.yaml"
18-
redis_conf_path = "${path.module}/files/redis.conf"
19-
redis_init_path = "${path.module}/files/redis-init.sh"
17+
compose_path = "${path.module}/files/compose.yaml"
18+
redis_conf_path = "${path.module}/files/redis.conf"
19+
redis_init_path = "${path.module}/files/redis-init.sh"
2020
tags = concat(
2121
[
2222
{

modules/redis standalone/variables.tf renamed to modules/redis-standalone-mtls/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ variable "ca_cert" {
115115

116116
variable "fullchain" {
117117
description = "The full chain certificate to be used for TLS encryption in Redis."
118-
type = string
118+
type = string
119119
}
120120

121121
variable "privkey" {

0 commit comments

Comments
 (0)