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:
parent
74ff5924cd
commit
2b68f8aa7f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue