mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
providers/aws: pass tests
This commit is contained in:
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…
Reference in New Issue
Block a user