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:
Michael Warkentin 2017-01-18 10:24:45 -05:00 committed by Paul Stack
parent 218237aa61
commit 51e1a15811
1 changed files with 1 additions and 1 deletions

View File

@ -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
}