From 9904a81caa17bbf6abf7e3b82fdfa0ac7aa1215a Mon Sep 17 00:00:00 2001 From: Eugene Pimenov Date: Fri, 14 Feb 2020 13:18:51 -0800 Subject: [PATCH] Fix apply_immediately (#60) It was declared as a variable, but wasn't actually set on the aws_elasticache_replication_group resource. This commit adds it to the resource, so the changes can be applied immediately Co-authored-by: Maxim Mironenko --- main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main.tf b/main.tf index 66c1136..c8c7b4f 100644 --- a/main.tf +++ b/main.tf @@ -99,6 +99,7 @@ resource "aws_elasticache_replication_group" "default" { transit_encryption_enabled = var.transit_encryption_enabled snapshot_window = var.snapshot_window snapshot_retention_limit = var.snapshot_retention_limit + apply_immediately = var.apply_immediately tags = module.label.tags