terraform/builtin/providers/aws/resource_provider.go

95 lines
2.3 KiB
Go
Raw Normal View History

2014-05-30 02:28:38 +02:00
package aws
import (
2014-06-24 04:01:57 +02:00
"log"
2014-06-18 18:33:13 +02:00
2014-06-24 04:01:57 +02:00
"github.com/hashicorp/terraform/helper/config"
2014-07-03 22:06:24 +02:00
"github.com/hashicorp/terraform/helper/multierror"
"github.com/hashicorp/terraform/terraform"
2014-07-10 01:00:11 +02:00
"github.com/mitchellh/goamz/autoscaling"
2014-06-24 04:01:57 +02:00
"github.com/mitchellh/goamz/ec2"
2014-06-27 18:55:24 +02:00
"github.com/mitchellh/goamz/elb"
)
2014-05-30 02:28:38 +02:00
type ResourceProvider struct {
2014-06-24 04:01:57 +02:00
Config Config
2014-07-10 01:00:11 +02:00
ec2conn *ec2.EC2
elbconn *elb.ELB
autoscalingconn *autoscaling.AutoScaling
2014-05-30 02:28:38 +02:00
}
2014-06-13 08:08:47 +02:00
func (p *ResourceProvider) Validate(c *terraform.ResourceConfig) ([]string, []error) {
2014-07-10 20:31:16 +02:00
v := &config.Validator{
Optional: []string{
"access_key",
"secret_key",
"region",
},
}
return v.Validate(c)
2014-06-13 07:39:29 +02:00
}
2014-07-03 22:06:24 +02:00
func (p *ResourceProvider) ValidateResource(
t string, c *terraform.ResourceConfig) ([]string, []error) {
return resourceMap.Validate(t, c)
2014-07-03 22:06:24 +02:00
}
2014-06-24 04:01:57 +02:00
func (p *ResourceProvider) Configure(c *terraform.ResourceConfig) error {
if _, err := config.Decode(&p.Config, c.Config); err != nil {
return err
}
// Get the auth and region. This can fail if keys/regions were not
// specified and we're attempting to use the environment.
var errs []error
2014-07-10 20:31:16 +02:00
log.Println("[INFO] Building AWS auth structure")
2014-06-24 04:01:57 +02:00
auth, err := p.Config.AWSAuth()
if err != nil {
errs = append(errs, err)
}
2014-07-10 20:31:16 +02:00
log.Println("[INFO] Building AWS region structure")
2014-06-24 04:01:57 +02:00
region, err := p.Config.AWSRegion()
if err != nil {
errs = append(errs, err)
}
if len(errs) == 0 {
2014-07-10 20:31:16 +02:00
log.Println("[INFO] Initializing EC2 connection")
2014-06-24 04:01:57 +02:00
p.ec2conn = ec2.New(auth, region)
2014-07-10 20:31:16 +02:00
log.Println("[INFO] Initializing ELB connection")
p.elbconn = elb.New(auth, region)
2014-07-10 20:31:16 +02:00
log.Println("[INFO] Initializing AutoScaling connection")
2014-07-10 01:00:11 +02:00
p.autoscalingconn = autoscaling.New(auth, region)
2014-06-24 04:01:57 +02:00
}
if len(errs) > 0 {
2014-07-03 22:06:24 +02:00
return &multierror.Error{Errors: errs}
2014-06-24 04:01:57 +02:00
}
2014-06-07 05:17:38 +02:00
return nil
}
2014-06-19 01:52:21 +02:00
func (p *ResourceProvider) Apply(
s *terraform.ResourceState,
d *terraform.ResourceDiff) (*terraform.ResourceState, error) {
return resourceMap.Apply(s, d, p)
2014-06-19 01:52:21 +02:00
}
2014-06-07 05:17:38 +02:00
func (p *ResourceProvider) Diff(
s *terraform.ResourceState,
2014-06-13 07:15:36 +02:00
c *terraform.ResourceConfig) (*terraform.ResourceDiff, error) {
return resourceMap.Diff(s, c, p)
2014-05-30 02:28:38 +02:00
}
2014-06-20 20:52:21 +02:00
func (p *ResourceProvider) Refresh(
s *terraform.ResourceState) (*terraform.ResourceState, error) {
return resourceMap.Refresh(s, p)
2014-06-20 20:52:21 +02:00
}
func (p *ResourceProvider) Resources() []terraform.ResourceType {
return resourceMap.Resources()
}