422 lines
9.7 KiB
Go
422 lines
9.7 KiB
Go
package aws
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/hashicorp/terraform/helper/hashcode"
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
"github.com/mitchellh/goamz/rds"
|
|
)
|
|
|
|
func resourceAwsDbInstance() *schema.Resource {
|
|
return &schema.Resource{
|
|
Create: resourceAwsDbInstanceCreate,
|
|
Read: resourceAwsDbInstanceRead,
|
|
Delete: resourceAwsDbInstanceDelete,
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
"name": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"username": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"password": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"engine": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"engine_version": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"allocated_storage": &schema.Schema{
|
|
Type: schema.TypeInt,
|
|
Required: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"identifier": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"instance_class": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"availability_zone": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
Computed: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"backup_retention_period": &schema.Schema{
|
|
Type: schema.TypeInt,
|
|
Optional: true,
|
|
Computed: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"backup_window": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
Computed: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"iops": &schema.Schema{
|
|
Type: schema.TypeInt,
|
|
Optional: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"maintenance_window": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
Computed: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"multi_az": &schema.Schema{
|
|
Type: schema.TypeBool,
|
|
Optional: true,
|
|
Computed: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"port": &schema.Schema{
|
|
Type: schema.TypeInt,
|
|
Optional: true,
|
|
Computed: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"publicly_accessible": &schema.Schema{
|
|
Type: schema.TypeBool,
|
|
Optional: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"vpc_security_group_ids": &schema.Schema{
|
|
Type: schema.TypeSet,
|
|
Optional: true,
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
Set: func(v interface{}) int {
|
|
return hashcode.String(v.(string))
|
|
},
|
|
},
|
|
|
|
"security_group_names": &schema.Schema{
|
|
Type: schema.TypeSet,
|
|
Optional: true,
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
Set: func(v interface{}) int {
|
|
return hashcode.String(v.(string))
|
|
},
|
|
},
|
|
|
|
"final_snapshot_identifier": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"db_subnet_group_name": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"parameter_group_name": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Optional: true,
|
|
Computed: true,
|
|
ForceNew: true,
|
|
},
|
|
|
|
"address": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Computed: true,
|
|
},
|
|
|
|
"endpoint": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Computed: true,
|
|
},
|
|
|
|
"status": &schema.Schema{
|
|
Type: schema.TypeString,
|
|
Computed: true,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func resourceAwsDbInstanceCreate(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).rdsconn
|
|
opts := rds.CreateDBInstance{
|
|
AllocatedStorage: d.Get("allocated_storage").(int),
|
|
SetAllocatedStorage: true,
|
|
DBInstanceClass: d.Get("instance_class").(string),
|
|
DBInstanceIdentifier: d.Get("identifier").(string),
|
|
DBName: d.Get("name").(string),
|
|
MasterUsername: d.Get("username").(string),
|
|
MasterUserPassword: d.Get("password").(string),
|
|
Engine: d.Get("engine").(string),
|
|
EngineVersion: d.Get("engine_version").(string),
|
|
}
|
|
|
|
if attr, ok := d.GetOk("backup_retention_period"); ok {
|
|
opts.BackupRetentionPeriod = attr.(int)
|
|
opts.SetBackupRetentionPeriod = true
|
|
}
|
|
|
|
if attr, ok := d.GetOk("iops"); ok {
|
|
opts.Iops = attr.(int)
|
|
opts.SetIops = true
|
|
}
|
|
|
|
if attr, ok := d.GetOk("port"); ok {
|
|
opts.Port = attr.(int)
|
|
opts.SetPort = true
|
|
}
|
|
|
|
if attr, ok := d.GetOk("multi_az"); ok {
|
|
opts.MultiAZ = attr.(bool)
|
|
}
|
|
|
|
if attr, ok := d.GetOk("availability_zone"); ok {
|
|
opts.AvailabilityZone = attr.(string)
|
|
}
|
|
|
|
if attr, ok := d.GetOk("maintenance_window"); ok {
|
|
opts.PreferredMaintenanceWindow = attr.(string)
|
|
}
|
|
|
|
if attr, ok := d.GetOk("backup_window"); ok {
|
|
opts.PreferredBackupWindow = attr.(string)
|
|
}
|
|
|
|
if attr, ok := d.GetOk("publicly_accessible"); ok {
|
|
opts.PubliclyAccessible = attr.(bool)
|
|
}
|
|
|
|
if attr, ok := d.GetOk("db_subnet_group_name"); ok {
|
|
opts.DBSubnetGroupName = attr.(string)
|
|
}
|
|
|
|
if attr, ok := d.GetOk("parameter_group_name"); ok {
|
|
opts.DBParameterGroupName = attr.(string)
|
|
}
|
|
|
|
if attr := d.Get("vpc_security_group_ids").(*schema.Set); attr.Len() > 0 {
|
|
var s []string
|
|
for _, v := range attr.List() {
|
|
s = append(s, v.(string))
|
|
}
|
|
opts.VpcSecurityGroupIds = s
|
|
}
|
|
|
|
if attr := d.Get("security_group_names").(*schema.Set); attr.Len() > 0 {
|
|
var s []string
|
|
for _, v := range attr.List() {
|
|
s = append(s, v.(string))
|
|
}
|
|
opts.DBSecurityGroupNames = s
|
|
}
|
|
|
|
log.Printf("[DEBUG] DB Instance create configuration: %#v", opts)
|
|
_, err := conn.CreateDBInstance(&opts)
|
|
if err != nil {
|
|
return fmt.Errorf("Error creating DB Instance: %s", err)
|
|
}
|
|
|
|
d.SetId(d.Get("identifier").(string))
|
|
|
|
log.Printf("[INFO] DB Instance ID: %s", d.Id())
|
|
|
|
log.Println(
|
|
"[INFO] Waiting for DB Instance to be available")
|
|
|
|
stateConf := &resource.StateChangeConf{
|
|
Pending: []string{"creating", "backing-up", "modifying"},
|
|
Target: "available",
|
|
Refresh: resourceAwsDbInstanceStateRefreshFunc(d, meta),
|
|
Timeout: 20 * time.Minute,
|
|
MinTimeout: 10 * time.Second,
|
|
Delay: 30 * time.Second, // Wait 30 secs before starting
|
|
}
|
|
|
|
// Wait, catching any errors
|
|
_, err = stateConf.WaitForState()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return resourceAwsDbInstanceRead(d, meta)
|
|
}
|
|
|
|
func resourceAwsDbInstanceRead(d *schema.ResourceData, meta interface{}) error {
|
|
v, err := resourceAwsBbInstanceRetrieve(d, meta)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if v == nil {
|
|
d.SetId("")
|
|
return nil
|
|
}
|
|
|
|
d.Set("name", v.DBName)
|
|
d.Set("username", v.MasterUsername)
|
|
d.Set("engine", v.Engine)
|
|
d.Set("engine_version", v.EngineVersion)
|
|
d.Set("allocated_storage", v.AllocatedStorage)
|
|
d.Set("instance_class", v.DBInstanceClass)
|
|
d.Set("availability_zone", v.AvailabilityZone)
|
|
d.Set("backup_retention_period", v.BackupRetentionPeriod)
|
|
d.Set("backup_window", v.PreferredBackupWindow)
|
|
d.Set("maintenance_window", v.PreferredMaintenanceWindow)
|
|
d.Set("multi_az", v.MultiAZ)
|
|
d.Set("port", v.Port)
|
|
d.Set("db_subnet_group_name", v.DBSubnetGroup.Name)
|
|
d.Set("parameter_group_name", v.DBParameterGroupName)
|
|
d.Set("address", v.Address)
|
|
d.Set("endpoint", fmt.Sprintf("%s:%d", v.Address, v.Port))
|
|
d.Set("status", v.DBInstanceStatus)
|
|
|
|
// Create an empty schema.Set to hold all vpc security group ids
|
|
ids := &schema.Set{
|
|
F: func(v interface{}) int {
|
|
return hashcode.String(v.(string))
|
|
},
|
|
}
|
|
for _, v := range v.VpcSecurityGroupIds {
|
|
ids.Add(v)
|
|
}
|
|
d.Set("vpc_security_group_ids", ids)
|
|
|
|
// Create an empty schema.Set to hold all security group names
|
|
sgn := &schema.Set{
|
|
F: func(v interface{}) int {
|
|
return hashcode.String(v.(string))
|
|
},
|
|
}
|
|
for _, v := range v.DBSecurityGroupNames {
|
|
sgn.Add(v)
|
|
}
|
|
d.Set("security_group_names", sgn)
|
|
|
|
return nil
|
|
}
|
|
|
|
func resourceAwsDbInstanceDelete(d *schema.ResourceData, meta interface{}) error {
|
|
conn := meta.(*AWSClient).rdsconn
|
|
|
|
log.Printf("[DEBUG] DB Instance destroy: %v", d.Id())
|
|
|
|
opts := rds.DeleteDBInstance{DBInstanceIdentifier: d.Id()}
|
|
|
|
finalSnapshot := d.Get("final_snapshot_identifier").(string)
|
|
if finalSnapshot == "" {
|
|
opts.SkipFinalSnapshot = true
|
|
} else {
|
|
opts.FinalDBSnapshotIdentifier = finalSnapshot
|
|
}
|
|
|
|
log.Printf("[DEBUG] DB Instance destroy configuration: %v", opts)
|
|
if _, err := conn.DeleteDBInstance(&opts); err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Println(
|
|
"[INFO] Waiting for DB Instance to be destroyed")
|
|
stateConf := &resource.StateChangeConf{
|
|
Pending: []string{"creating", "backing-up",
|
|
"modifying", "deleting", "available"},
|
|
Target: "",
|
|
Refresh: resourceAwsDbInstanceStateRefreshFunc(d, meta),
|
|
Timeout: 20 * time.Minute,
|
|
MinTimeout: 10 * time.Second,
|
|
Delay: 30 * time.Second, // Wait 30 secs before starting
|
|
}
|
|
if _, err := stateConf.WaitForState(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func resourceAwsBbInstanceRetrieve(
|
|
d *schema.ResourceData, meta interface{}) (*rds.DBInstance, error) {
|
|
conn := meta.(*AWSClient).rdsconn
|
|
|
|
opts := rds.DescribeDBInstances{
|
|
DBInstanceIdentifier: d.Id(),
|
|
}
|
|
|
|
log.Printf("[DEBUG] DB Instance describe configuration: %#v", opts)
|
|
|
|
resp, err := conn.DescribeDBInstances(&opts)
|
|
|
|
if err != nil {
|
|
if strings.Contains(err.Error(), "DBInstanceNotFound") {
|
|
return nil, nil
|
|
}
|
|
return nil, fmt.Errorf("Error retrieving DB Instances: %s", err)
|
|
}
|
|
|
|
if len(resp.DBInstances) != 1 ||
|
|
resp.DBInstances[0].DBInstanceIdentifier != d.Id() {
|
|
if err != nil {
|
|
return nil, nil
|
|
}
|
|
}
|
|
|
|
v := resp.DBInstances[0]
|
|
|
|
return &v, nil
|
|
}
|
|
|
|
func resourceAwsDbInstanceStateRefreshFunc(
|
|
d *schema.ResourceData, meta interface{}) resource.StateRefreshFunc {
|
|
return func() (interface{}, string, error) {
|
|
v, err := resourceAwsBbInstanceRetrieve(d, meta)
|
|
|
|
if err != nil {
|
|
log.Printf("Error on retrieving DB Instance when waiting: %s", err)
|
|
return nil, "", err
|
|
}
|
|
|
|
if v == nil {
|
|
return nil, "", nil
|
|
}
|
|
|
|
return v, v.DBInstanceStatus, nil
|
|
}
|
|
}
|