providers/aws: Apply

This commit is contained in:
Mitchell Hashimoto 2014-06-18 16:52:21 -07:00
parent 8c1a69aa0a
commit 965d403d3d
1 changed files with 10 additions and 0 deletions

View File

@ -22,6 +22,16 @@ func (p *ResourceProvider) Configure(*terraform.ResourceConfig) error {
return nil
}
func (p *ResourceProvider) Apply(
s *terraform.ResourceState,
d *terraform.ResourceDiff) (*terraform.ResourceState, error) {
result := &terraform.ResourceState{
ID: "foo",
}
return result, nil
}
func (p *ResourceProvider) Diff(
s *terraform.ResourceState,
c *terraform.ResourceConfig) (*terraform.ResourceDiff, error) {