From 2b68f8aa7f8413d3762fb67c0e75ec9083430f4d Mon Sep 17 00:00:00 2001 From: Michael Warkentin Date: Wed, 18 Jan 2017 04:42:10 -0500 Subject: [PATCH] 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 ``` --- .../providers/aws/r/elasticache_replication_group.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/aws/r/elasticache_replication_group.html.markdown b/website/source/docs/providers/aws/r/elasticache_replication_group.html.markdown index 166d2f178..29de646fa 100644 --- a/website/source/docs/providers/aws/r/elasticache_replication_group.html.markdown +++ b/website/source/docs/providers/aws/r/elasticache_replication_group.html.markdown @@ -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