providers/aws: call ValidateResource on Map

/cc @pearkes - Here is the thing that hooks it up. Good to go!
This commit is contained in:
Mitchell Hashimoto 2014-07-08 10:18:39 -07:00
parent 0c812ba9e8
commit e4a1b2485a
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ func (p *ResourceProvider) Validate(c *terraform.ResourceConfig) ([]string, []er
func (p *ResourceProvider) ValidateResource(
t string, c *terraform.ResourceConfig) ([]string, []error) {
return nil, nil
return resourceMap.Validate(t, c)
}
func (p *ResourceProvider) Configure(c *terraform.ResourceConfig) error {