From d111a4c05df7116e2a91a1bf920e8ce1eff30f73 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 9 Jul 2014 09:51:52 -0700 Subject: [PATCH] providers/aws: fix syntax error --- builtin/providers/aws/resources.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resources.go b/builtin/providers/aws/resources.go index 018fd1fb0..50f726b90 100644 --- a/builtin/providers/aws/resources.go +++ b/builtin/providers/aws/resources.go @@ -49,7 +49,7 @@ func init() { }, Optional: []string{ "route.*.gateway_id", - } + }, }, Create: resource_aws_route_table_create, Destroy: resource_aws_route_table_destroy,