terraform/builtin/providers/aws/resource_aws_subnet.go

192 lines
4.5 KiB
Go
Raw Normal View History

2014-07-07 23:46:02 +02:00
package aws
import (
"fmt"
"log"
"time"
"github.com/hashicorp/terraform/helper/resource"
2014-11-02 21:30:33 +01:00
"github.com/hashicorp/terraform/helper/schema"
2014-07-07 23:46:02 +02:00
"github.com/mitchellh/goamz/ec2"
)
2014-11-02 21:30:33 +01:00
func resourceAwsSubnet() *schema.Resource {
return &schema.Resource{
Create: resourceAwsSubnetCreate,
Read: resourceAwsSubnetRead,
Update: resourceAwsSubnetUpdate,
Delete: resourceAwsSubnetDelete,
Schema: map[string]*schema.Schema{
"vpc_id": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Computed: true,
},
"cidr_block": &schema.Schema{
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"availability_zone": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
},
"map_public_ip_on_launch": &schema.Schema{
Type: schema.TypeBool,
Optional: true,
Computed: true,
2014-11-02 21:30:33 +01:00
},
"tags": tagsSchema(),
},
}
}
func resourceAwsSubnetCreate(d *schema.ResourceData, meta interface{}) error {
ec2conn := meta.(*AWSClient).ec2conn
2014-07-07 23:46:02 +02:00
createOpts := &ec2.CreateSubnet{
2014-11-02 21:30:33 +01:00
AvailabilityZone: d.Get("availability_zone").(string),
CidrBlock: d.Get("cidr_block").(string),
VpcId: d.Get("vpc_id").(string),
2014-07-07 23:46:02 +02:00
}
2014-11-02 21:30:33 +01:00
2014-07-07 23:46:02 +02:00
resp, err := ec2conn.CreateSubnet(createOpts)
2014-11-02 21:30:33 +01:00
2014-07-07 23:46:02 +02:00
if err != nil {
2014-11-02 21:30:33 +01:00
return fmt.Errorf("Error creating subnet: %s", err)
2014-07-07 23:46:02 +02:00
}
// Get the ID and store it
subnet := &resp.Subnet
2014-11-02 21:30:33 +01:00
d.SetId(subnet.SubnetId)
log.Printf("[INFO] Subnet ID: %s", subnet.SubnetId)
2014-07-07 23:46:02 +02:00
// Wait for the Subnet to become available
2014-11-02 21:30:33 +01:00
log.Printf("[DEBUG] Waiting for subnet (%s) to become available", subnet.SubnetId)
2014-07-07 23:46:02 +02:00
stateConf := &resource.StateChangeConf{
Pending: []string{"pending"},
Target: "available",
2014-11-02 21:30:33 +01:00
Refresh: SubnetStateRefreshFunc(ec2conn, subnet.SubnetId),
2014-07-07 23:46:02 +02:00
Timeout: 10 * time.Minute,
}
2014-11-02 21:30:33 +01:00
_, err = stateConf.WaitForState()
2014-09-10 07:13:16 +02:00
2014-11-02 21:30:33 +01:00
if err != nil {
return fmt.Errorf(
"Error waiting for subnet (%s) to become ready: %s",
d.Id(), err)
}
2014-07-07 23:46:02 +02:00
2014-11-02 21:30:33 +01:00
return resourceAwsSubnetUpdate(d, meta)
2014-07-07 23:46:02 +02:00
}
2014-11-02 21:30:33 +01:00
func resourceAwsSubnetRead(d *schema.ResourceData, meta interface{}) error {
ec2conn := meta.(*AWSClient).ec2conn
2014-07-07 23:46:02 +02:00
2014-11-02 21:30:33 +01:00
resp, err := ec2conn.DescribeSubnets([]string{d.Id()}, ec2.NewFilter())
2014-07-07 23:46:02 +02:00
2014-11-02 21:30:33 +01:00
if err != nil {
if ec2err, ok := err.(*ec2.Error); ok && ec2err.Code == "InvalidSubnetID.NotFound" {
// Update state to indicate the subnet no longer exists.
d.SetId("")
return nil
}
2014-11-02 21:30:33 +01:00
return err
}
2014-11-02 21:30:33 +01:00
if resp == nil {
return nil
}
2014-11-02 21:30:33 +01:00
subnet := &resp.Subnets[0]
d.Set("vpc_id", subnet.VpcId)
d.Set("availability_zone", subnet.AvailabilityZone)
d.Set("cidr_block", subnet.CidrBlock)
d.Set("map_public_ip_on_launch", subnet.MapPublicIpOnLaunch)
d.Set("tags", tagsToMap(subnet.Tags))
2014-07-07 23:46:02 +02:00
return nil
}
2014-11-02 21:30:33 +01:00
func resourceAwsSubnetUpdate(d *schema.ResourceData, meta interface{}) error {
ec2conn := meta.(*AWSClient).ec2conn
2014-07-07 23:46:02 +02:00
2014-11-02 21:30:33 +01:00
d.Partial(true)
if err := setTags(ec2conn, d); err != nil {
return err
} else {
d.SetPartial("tags")
2014-07-07 23:46:02 +02:00
}
2014-11-02 21:30:33 +01:00
if d.HasChange("map_public_ip_on_launch") {
modifyOpts := &ec2.ModifySubnetAttribute{
SubnetId: d.Id(),
MapPublicIpOnLaunch: true,
}
2014-07-07 23:46:02 +02:00
2014-11-02 21:30:33 +01:00
log.Printf("[DEBUG] Subnet modify attributes: %#v", modifyOpts)
2014-11-02 21:30:33 +01:00
_, err := ec2conn.ModifySubnetAttribute(modifyOpts)
if err != nil {
return err
} else {
d.SetPartial("map_public_ip_on_launch")
}
2014-07-07 23:46:02 +02:00
}
2014-11-02 21:30:33 +01:00
d.Partial(false)
return resourceAwsSubnetRead(d, meta)
2014-07-07 23:46:02 +02:00
}
2014-11-02 21:30:33 +01:00
func resourceAwsSubnetDelete(d *schema.ResourceData, meta interface{}) error {
ec2conn := meta.(*AWSClient).ec2conn
2014-11-02 21:30:33 +01:00
log.Printf("[INFO] Deleting subnet: %s", d.Id())
if _, err := ec2conn.DeleteSubnet(d.Id()); err != nil {
ec2err, ok := err.(*ec2.Error)
if ok && ec2err.Code == "InvalidSubnetID.NotFound" {
return nil
}
return fmt.Errorf("Error deleting subnet: %s", err)
2014-09-10 07:13:16 +02:00
}
2014-11-02 21:30:33 +01:00
return nil
2014-07-07 23:46:02 +02:00
}
2014-11-02 21:30:33 +01:00
// SubnetStateRefreshFunc returns a resource.StateRefreshFunc that is used to watch a Subnet.
2014-07-07 23:46:02 +02:00
func SubnetStateRefreshFunc(conn *ec2.EC2, id string) resource.StateRefreshFunc {
return func() (interface{}, string, error) {
resp, err := conn.DescribeSubnets([]string{id}, ec2.NewFilter())
if err != nil {
if ec2err, ok := err.(*ec2.Error); ok && ec2err.Code == "InvalidSubnetID.NotFound" {
resp = nil
} else {
log.Printf("Error on SubnetStateRefresh: %s", err)
return nil, "", err
}
}
if resp == nil {
// Sometimes AWS just has consistency issues and doesn't see
// our instance yet. Return an empty state.
return nil, "", nil
}
subnet := &resp.Subnets[0]
return subnet, subnet.State, nil
}
}