Shorten ID in example (#11244)

Example code fails a validation:

```
Errors:

  * aws_elasticache_replication_group.cache: "replication_group_id" must contain from 1 to 20 alphanumeric characters or hyphens
```
This commit is contained in:
Michael Warkentin 2017-01-18 04:42:10 -05:00 committed by Paul Stack
parent 74ff5924cd
commit 2b68f8aa7f
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ Provides an ElastiCache Replication Group resource.
```
resource "aws_elasticache_replication_group" "bar" {
replication_group_id = "tf-replication-group-1"
replication_group_id = "tf-rep-group-1"
replication_group_description = "test description"
node_type = "cache.m1.small"
number_cache_clusters = 2