Update `parameter_group_name` (#11269)
``` 1 error(s) occurred: * aws_elasticache_replication_group.cache: Error creating Elasticache Replication Group: InvalidParameterCombination: Expected a parameter group of family redis3.2 but found one of family redis2.8 status code: 400, request id: 9e6563a4-dd91-11e6-bc8b-ed011a44f429 ```
This commit is contained in:
parent
218237aa61
commit
51e1a15811
|
@ -19,7 +19,7 @@ resource "aws_elasticache_replication_group" "bar" {
|
|||
node_type = "cache.m1.small"
|
||||
number_cache_clusters = 2
|
||||
port = 6379
|
||||
parameter_group_name = "default.redis2.8"
|
||||
parameter_group_name = "default.redis3.2"
|
||||
availability_zones = ["us-west-2a", "us-west-2b"]
|
||||
automatic_failover_enabled = true
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue