providers/aws: elb instance registration

This commit is contained in:
Jack Pearkes 2014-07-04 19:03:01 -04:00
parent d484ebadcd
commit 69acd6272a
2 changed files with 28 additions and 26 deletions

View File

@ -51,26 +51,6 @@ func resource_aws_elb_create(
rs.ID = elbName rs.ID = elbName
log.Printf("[INFO] ELB ID: %s", elbName) log.Printf("[INFO] ELB ID: %s", elbName)
describeElbOpts := &elb.DescribeLoadBalancer{
Names: []string{elbName},
}
// Retrieve the ELB properties for updating the state
describeResp, err := elbconn.DescribeLoadBalancers(describeElbOpts)
if err != nil {
return nil, fmt.Errorf("Error retrieving ELB: %s", err)
}
// Verify AWS returned our ELB
if len(describeResp.LoadBalancers) != 1 ||
describeResp.LoadBalancers[0].LoadBalancerName != elbName {
if err != nil {
return nil, fmt.Errorf("Unable to find ELB: %#v", describeResp.LoadBalancers)
}
}
loadBalancer := describeResp.LoadBalancers[0]
// If we have any instances, we need to register them // If we have any instances, we need to register them
v = flatmap.Expand(rs.Attributes, "instances").([]interface{}) v = flatmap.Expand(rs.Attributes, "instances").([]interface{})
instances := expandStringList(v) instances := expandStringList(v)
@ -81,7 +61,31 @@ func resource_aws_elb_create(
Instances: instances, Instances: instances,
} }
registerResp, err := elbconn.RegisterInstancesWithLoadBalancer(registerInstancesOpts) _, err := elbconn.RegisterInstancesWithLoadBalancer(&registerInstancesOpts)
if err != nil {
return nil, fmt.Errorf("Failure registering instances: %s", err)
}
}
describeElbOpts := &elb.DescribeLoadBalancer{
Names: []string{elbName},
}
// Retrieve the ELB properties for updating the state
describeResp, err := elbconn.DescribeLoadBalancers(describeElbOpts)
if err != nil {
return nil, fmt.Errorf("Error retrieving ELB: %s", err)
}
loadBalancer := describeResp.LoadBalancers[0]
// Verify AWS returned our ELB
if len(describeResp.LoadBalancers) != 1 ||
describeResp.LoadBalancers[0].LoadBalancerName != elbName {
if err != nil {
return nil, fmt.Errorf("Unable to find ELB: %#v", describeResp.LoadBalancers)
}
} }
return resource_aws_elb_update_state(rs, &loadBalancer) return resource_aws_elb_update_state(rs, &loadBalancer)
@ -96,11 +100,7 @@ func resource_aws_elb_update(
// Merge the diff into the state so that we have all the attributes // Merge the diff into the state so that we have all the attributes
// properly. // properly.
rs := s.MergeDiff(d) // rs := s.MergeDiff(d)
log.Println(rs)
rs.Attributes
return nil, nil return nil, nil
} }

View File

@ -115,6 +115,7 @@ func resource_aws_instance_diff(
"public_ip", "public_ip",
"private_dns", "private_dns",
"private_ip", "private_ip",
"instance_id",
}, },
} }
@ -161,6 +162,7 @@ func resource_aws_instance_update_state(
s.Attributes["public_ip"] = instance.PublicIpAddress s.Attributes["public_ip"] = instance.PublicIpAddress
s.Attributes["private_dns"] = instance.PrivateDNSName s.Attributes["private_dns"] = instance.PrivateDNSName
s.Attributes["private_ip"] = instance.PrivateIpAddress s.Attributes["private_ip"] = instance.PrivateIpAddress
s.Attributes["instance_id"] = instance.InstanceId
return s, nil return s, nil
} }