providers/aws: pass tests
This commit is contained in:
parent
02a3603a9a
commit
54f3ff33b9
|
@ -7,7 +7,13 @@ import (
|
||||||
type ResourceProvider struct {
|
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
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue