From 54f3ff33b9242d25d56ad028638805fa9b1dcfb1 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 6 Jun 2014 20:17:38 -0700 Subject: [PATCH] providers/aws: pass tests --- builtin/providers/aws/resource_provider.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_provider.go b/builtin/providers/aws/resource_provider.go index ef420a9df..2146778c1 100644 --- a/builtin/providers/aws/resource_provider.go +++ b/builtin/providers/aws/resource_provider.go @@ -7,7 +7,13 @@ import ( type ResourceProvider struct { } -func (p *ResourceProvider) Configure(map[string]interface{}) ([]string, error) { +func (p *ResourceProvider) Configure(map[string]interface{}) error { + return nil +} + +func (p *ResourceProvider) Diff( + s *terraform.ResourceState, + c map[string]interface{}) (*terraform.ResourceDiff, error) { return nil, nil }