We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fdbc26 commit b80ecb7Copy full SHA for b80ecb7
elasticache-redis/replication-group/main.tf
@@ -1,6 +1,7 @@
1
resource "aws_elasticache_replication_group" "this" {
2
replication_group_id = coalesce(var.replication_group_id, var.name)
3
4
+ apply_immediately = var.apply_immediately
5
at_rest_encryption_enabled = var.at_rest_encryption_enabled
6
automatic_failover_enabled = local.replica_enabled
7
description = var.description
elasticache-redis/replication-group/variables.tf
@@ -1,3 +1,9 @@
+variable "apply_immediately" {
+ type = bool
+ description = "Set to true to apply changes immediately"
+ default = false
+}
+
variable "alarm_actions" {
8
type = list(object({ arn = string }))
9
description = "SNS topcis or other actions to invoke for alarms"
0 commit comments