providers/aws: pass tests

This commit is contained in:
Mitchell Hashimoto 2014-06-06 20:17:38 -07:00
parent 02a3603a9a
commit 54f3ff33b9
1 changed files with 7 additions and 1 deletions

View File

@ -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
}