providers/aws: compile

This commit is contained in:
Mitchell Hashimoto 2014-06-12 22:39:29 -07:00
parent cc491e61bc
commit 0b9542c5b9
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@ import (
type ResourceProvider struct {
}
func (p *ResourceProvider) Validate(*terraform.ResourceConfig) ([]string, []error) {
return nil, nil
}
func (p *ResourceProvider) Configure(*terraform.ResourceConfig) error {
return nil
}