providers/aws: pass tests

pull/5/head
Mitchell Hashimoto 12 years ago
parent 02a3603a9a
commit 54f3ff33b9

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

Loading…
Cancel
Save