Skip to content

Commit f7050b4

Browse files
committed
Remove transit encryption
1 parent 277a6ed commit f7050b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ resource "aws_elasticache_parameter_group" "default" {
5151
resource "aws_elasticache_replication_group" "default" {
5252
count = "${var.enabled == "true" ? 1 : 0}"
5353

54-
auth_token = "${var.auth_token}"
54+
#auth_token = "${var.auth_token}"
5555
replication_group_id = "${var.replication_group_id == "" ? module.label.id : var.replication_group_id}"
5656
replication_group_description = "${module.label.id}"
5757
node_type = "${var.instance_type}"

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ variable "at_rest_encryption_enabled" {
7777
}
7878

7979
variable "transit_encryption_enabled" {
80-
default = "true"
80+
default = "false"
8181
description = "Enable TLS"
8282
}
8383

0 commit comments

Comments
 (0)