Skip to content

Commit

Permalink
Fix apply_immediately (#60)
Browse files Browse the repository at this point in the history
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 <simixido@gmail.com>
  • Loading branch information
libc and maximmi authored Feb 14, 2020
1 parent f86673c commit 9904a81
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9904a81

Please sign in to comment.