mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-11 00:22:32 -06:00
providers/aws: get tests passing
This commit is contained in:
parent
a256f27b24
commit
00a8c4f2ca
@ -7,13 +7,13 @@ import (
|
||||
type ResourceProvider struct {
|
||||
}
|
||||
|
||||
func (p *ResourceProvider) Configure(map[string]interface{}) error {
|
||||
func (p *ResourceProvider) Configure(*terraform.ResourceConfig) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (p *ResourceProvider) Diff(
|
||||
s *terraform.ResourceState,
|
||||
c map[string]interface{}) (*terraform.ResourceDiff, error) {
|
||||
c *terraform.ResourceConfig) (*terraform.ResourceDiff, error) {
|
||||
return &terraform.ResourceDiff{
|
||||
Attributes: map[string]*terraform.ResourceAttrDiff{
|
||||
"id": &terraform.ResourceAttrDiff{
|
||||
|
Loading…
Reference in New Issue
Block a user