From 2809280e98054f4ace8312a830362b742e69abe3 Mon Sep 17 00:00:00 2001 From: Clint Shryock Date: Thu, 14 May 2015 11:51:08 -0500 Subject: [PATCH] cleanup --- builtin/providers/aws/resource_aws_elasticache_cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_elasticache_cluster.go b/builtin/providers/aws/resource_aws_elasticache_cluster.go index 5f5467150..9cb6a86b0 100644 --- a/builtin/providers/aws/resource_aws_elasticache_cluster.go +++ b/builtin/providers/aws/resource_aws_elasticache_cluster.go @@ -234,7 +234,7 @@ func resourceAwsElasticacheClusterUpdate(d *schema.ResourceData, meta interface{ conn := meta.(*AWSClient).elasticacheconn arn, err := buildECARN(d, meta) if err != nil { - log.Printf("[DEBUG] Error building ARN for ElastiCache Cluster, not updating Tags for cluster %s", *c.CacheClusterID) + log.Printf("[DEBUG] Error building ARN for ElastiCache Cluster, not updating Tags for cluster %s", d.Id()) } else { if err := setTagsEC(conn, d, arn); err != nil { return err