From 24ecb1ae70f038be751869122d47f2f667f0f302 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 17 Jul 2014 09:46:31 -0700 Subject: [PATCH] providers/aws/aws_vpc: fix error message referencing ELB --- builtin/providers/aws/resource_aws_vpc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_vpc.go b/builtin/providers/aws/resource_aws_vpc.go index 218b3bc17..00f5b6054 100644 --- a/builtin/providers/aws/resource_aws_vpc.go +++ b/builtin/providers/aws/resource_aws_vpc.go @@ -81,7 +81,7 @@ func resource_aws_vpc_destroy( return nil } - return fmt.Errorf("Error deleting ELB: %s", err) + return fmt.Errorf("Error deleting VPC: %s", err) } return nil