terraform/builtin/providers/aws/resource_provider.go

39 lines
770 B
Go

package aws
import (
"github.com/hashicorp/terraform/terraform"
)
type ResourceProvider struct {
}
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 &terraform.ResourceDiff{
Attributes: map[string]*terraform.ResourceAttrDiff{
"id": &terraform.ResourceAttrDiff{
Old: "",
NewComputed: true,
RequiresNew: true,
},
"created": &terraform.ResourceAttrDiff{
Old: "false",
New: "true",
},
},
}, nil
}
func (p *ResourceProvider) Resources() []terraform.ResourceType {
return []terraform.ResourceType{
terraform.ResourceType{
Name: "aws_instance",
},
}
}