From 05bfe85f9f9a8cf2af40514b6a4b2df07f6203b5 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 16 Oct 2014 18:24:58 -0700 Subject: [PATCH] providers/aws: instances can be computed on an ELB --- builtin/providers/aws/resource_aws_elb.go | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/providers/aws/resource_aws_elb.go b/builtin/providers/aws/resource_aws_elb.go index 373a1da77..9fffd321e 100644 --- a/builtin/providers/aws/resource_aws_elb.go +++ b/builtin/providers/aws/resource_aws_elb.go @@ -42,6 +42,7 @@ func resourceAwsElb() *schema.Resource { Type: schema.TypeSet, Elem: &schema.Schema{Type: schema.TypeString}, Optional: true, + Computed: true, Set: func(v interface{}) int { return hashcode.String(v.(string)) },