Commit 9904a81c authored by Eugene Pimenov's avatar Eugene Pimenov Committed by GitHub

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: default avatarMaxim Mironenko <simixido@gmail.com>
parent f86673ce
...@@ -99,6 +99,7 @@ resource "aws_elasticache_replication_group" "default" { ...@@ -99,6 +99,7 @@ resource "aws_elasticache_replication_group" "default" {
transit_encryption_enabled = var.transit_encryption_enabled transit_encryption_enabled = var.transit_encryption_enabled
snapshot_window = var.snapshot_window snapshot_window = var.snapshot_window
snapshot_retention_limit = var.snapshot_retention_limit snapshot_retention_limit = var.snapshot_retention_limit
apply_immediately = var.apply_immediately
tags = module.label.tags tags = module.label.tags
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment