2014-10-22 23:22:30 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
2014-10-23 02:03:57 +02:00
|
|
|
"bytes"
|
2014-10-22 23:22:30 +02:00
|
|
|
"fmt"
|
|
|
|
"log"
|
2015-03-17 23:22:30 +01:00
|
|
|
"strings"
|
2014-10-22 23:22:30 +02:00
|
|
|
"time"
|
|
|
|
|
2014-10-23 02:03:57 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/hashcode"
|
2014-10-22 23:22:30 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
2015-02-26 16:33:33 +01:00
|
|
|
|
2015-04-15 22:02:52 +02:00
|
|
|
"github.com/awslabs/aws-sdk-go/aws"
|
|
|
|
"github.com/awslabs/aws-sdk-go/service/rds"
|
2014-10-22 23:22:30 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func resourceAwsDbParameterGroup() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Create: resourceAwsDbParameterGroupCreate,
|
|
|
|
Read: resourceAwsDbParameterGroupRead,
|
2014-10-23 02:03:57 +02:00
|
|
|
Update: resourceAwsDbParameterGroupUpdate,
|
2014-10-22 23:22:30 +02:00
|
|
|
Delete: resourceAwsDbParameterGroupDelete,
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
ForceNew: true,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"family": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
"description": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
"parameter": &schema.Schema{
|
2014-10-23 02:03:57 +02:00
|
|
|
Type: schema.TypeSet,
|
2014-10-22 23:22:30 +02:00
|
|
|
Optional: true,
|
2014-10-23 20:16:39 +02:00
|
|
|
ForceNew: false,
|
2014-10-22 23:22:30 +02:00
|
|
|
Elem: &schema.Resource{
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"value": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
2015-01-30 17:00:14 +01:00
|
|
|
"apply_method": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
Default: "immediate",
|
|
|
|
// this parameter is not actually state, but a
|
|
|
|
// meta-parameter describing how the RDS API call
|
|
|
|
// to modify the parameter group should be made.
|
|
|
|
// Future reads of the resource from AWS don't tell
|
|
|
|
// us what we used for apply_method previously, so
|
|
|
|
// by squashing state to an empty string we avoid
|
|
|
|
// needing to do an update for every future run.
|
|
|
|
StateFunc: func(interface{}) string { return "" },
|
|
|
|
},
|
2014-10-22 23:22:30 +02:00
|
|
|
},
|
|
|
|
},
|
2014-10-23 02:03:57 +02:00
|
|
|
Set: resourceAwsDbParameterHash,
|
2014-10-22 23:22:30 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsDbParameterGroupCreate(d *schema.ResourceData, meta interface{}) error {
|
2015-02-27 17:50:21 +01:00
|
|
|
rdsconn := meta.(*AWSClient).rdsconn
|
2014-10-22 23:22:30 +02:00
|
|
|
|
2015-04-15 22:02:52 +02:00
|
|
|
createOpts := rds.CreateDBParameterGroupInput{
|
2015-02-26 16:33:33 +01:00
|
|
|
DBParameterGroupName: aws.String(d.Get("name").(string)),
|
|
|
|
DBParameterGroupFamily: aws.String(d.Get("family").(string)),
|
|
|
|
Description: aws.String(d.Get("description").(string)),
|
2014-10-22 23:22:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Create DB Parameter Group: %#v", createOpts)
|
|
|
|
_, err := rdsconn.CreateDBParameterGroup(&createOpts)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating DB Parameter Group: %s", err)
|
|
|
|
}
|
|
|
|
|
2014-10-23 20:16:39 +02:00
|
|
|
d.Partial(true)
|
|
|
|
d.SetPartial("name")
|
|
|
|
d.SetPartial("family")
|
|
|
|
d.SetPartial("description")
|
|
|
|
d.Partial(false)
|
|
|
|
|
2015-02-26 16:33:33 +01:00
|
|
|
d.SetId(*createOpts.DBParameterGroupName)
|
2014-10-22 23:22:30 +02:00
|
|
|
log.Printf("[INFO] DB Parameter Group ID: %s", d.Id())
|
|
|
|
|
2014-10-23 02:03:57 +02:00
|
|
|
return resourceAwsDbParameterGroupUpdate(d, meta)
|
|
|
|
}
|
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
func resourceAwsDbParameterGroupRead(d *schema.ResourceData, meta interface{}) error {
|
2015-02-27 17:50:21 +01:00
|
|
|
rdsconn := meta.(*AWSClient).rdsconn
|
2014-11-21 17:58:34 +01:00
|
|
|
|
2015-04-15 22:02:52 +02:00
|
|
|
describeOpts := rds.DescribeDBParameterGroupsInput{
|
2015-02-26 16:33:33 +01:00
|
|
|
DBParameterGroupName: aws.String(d.Id()),
|
2014-11-21 17:58:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
describeResp, err := rdsconn.DescribeDBParameterGroups(&describeOpts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(describeResp.DBParameterGroups) != 1 ||
|
2015-02-26 16:33:33 +01:00
|
|
|
*describeResp.DBParameterGroups[0].DBParameterGroupName != d.Id() {
|
2014-11-21 17:58:34 +01:00
|
|
|
return fmt.Errorf("Unable to find Parameter Group: %#v", describeResp.DBParameterGroups)
|
|
|
|
}
|
|
|
|
|
|
|
|
d.Set("name", describeResp.DBParameterGroups[0].DBParameterGroupName)
|
|
|
|
d.Set("family", describeResp.DBParameterGroups[0].DBParameterGroupFamily)
|
|
|
|
d.Set("description", describeResp.DBParameterGroups[0].Description)
|
|
|
|
|
|
|
|
// Only include user customized parameters as there's hundreds of system/default ones
|
2015-04-15 22:02:52 +02:00
|
|
|
describeParametersOpts := rds.DescribeDBParametersInput{
|
2015-02-26 16:33:33 +01:00
|
|
|
DBParameterGroupName: aws.String(d.Id()),
|
|
|
|
Source: aws.String("user"),
|
2014-11-21 17:58:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
describeParametersResp, err := rdsconn.DescribeDBParameters(&describeParametersOpts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-04-16 22:28:18 +02:00
|
|
|
d.Set("parameter", flattenParameters(describeParametersResp.Parameters))
|
2014-11-21 17:58:34 +01:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-10-23 02:03:57 +02:00
|
|
|
func resourceAwsDbParameterGroupUpdate(d *schema.ResourceData, meta interface{}) error {
|
2015-02-27 17:50:21 +01:00
|
|
|
rdsconn := meta.(*AWSClient).rdsconn
|
2014-10-23 02:03:57 +02:00
|
|
|
|
2014-10-23 20:16:39 +02:00
|
|
|
d.Partial(true)
|
|
|
|
|
2014-10-23 02:03:57 +02:00
|
|
|
if d.HasChange("parameter") {
|
|
|
|
o, n := d.GetChange("parameter")
|
|
|
|
if o == nil {
|
|
|
|
o = new(schema.Set)
|
|
|
|
}
|
|
|
|
if n == nil {
|
|
|
|
n = new(schema.Set)
|
|
|
|
}
|
|
|
|
|
|
|
|
os := o.(*schema.Set)
|
|
|
|
ns := n.(*schema.Set)
|
|
|
|
|
2015-03-12 22:49:38 +01:00
|
|
|
// Expand the "parameter" set to aws-sdk-go compat []rds.Parameter
|
2015-04-16 22:28:18 +02:00
|
|
|
parameters, err := expandParameters(ns.Difference(os).List())
|
2014-10-22 23:22:30 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-10-23 02:03:57 +02:00
|
|
|
if len(parameters) > 0 {
|
2015-04-15 22:02:52 +02:00
|
|
|
modifyOpts := rds.ModifyDBParameterGroupInput{
|
2015-02-26 16:33:33 +01:00
|
|
|
DBParameterGroupName: aws.String(d.Get("name").(string)),
|
2014-11-21 17:58:34 +01:00
|
|
|
Parameters: parameters,
|
2014-10-23 02:03:57 +02:00
|
|
|
}
|
2014-10-22 23:22:30 +02:00
|
|
|
|
2014-10-23 02:03:57 +02:00
|
|
|
log.Printf("[DEBUG] Modify DB Parameter Group: %#v", modifyOpts)
|
|
|
|
_, err = rdsconn.ModifyDBParameterGroup(&modifyOpts)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error modifying DB Parameter Group: %s", err)
|
|
|
|
}
|
2014-10-22 23:22:30 +02:00
|
|
|
}
|
2014-10-23 20:16:39 +02:00
|
|
|
d.SetPartial("parameter")
|
2014-10-22 23:22:30 +02:00
|
|
|
}
|
|
|
|
|
2014-10-23 20:16:39 +02:00
|
|
|
d.Partial(false)
|
|
|
|
|
|
|
|
return resourceAwsDbParameterGroupRead(d, meta)
|
2014-10-22 23:22:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func resourceAwsDbParameterGroupDelete(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
stateConf := &resource.StateChangeConf{
|
|
|
|
Pending: []string{"pending"},
|
|
|
|
Target: "destroyed",
|
2014-11-21 17:58:34 +01:00
|
|
|
Refresh: resourceAwsDbParameterGroupDeleteRefreshFunc(d, meta),
|
2014-10-22 23:22:30 +02:00
|
|
|
Timeout: 3 * time.Minute,
|
|
|
|
MinTimeout: 1 * time.Second,
|
|
|
|
}
|
|
|
|
_, err := stateConf.WaitForState()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
func resourceAwsDbParameterGroupDeleteRefreshFunc(
|
2014-10-22 23:22:30 +02:00
|
|
|
d *schema.ResourceData,
|
|
|
|
meta interface{}) resource.StateRefreshFunc {
|
2015-02-27 17:50:21 +01:00
|
|
|
rdsconn := meta.(*AWSClient).rdsconn
|
2014-10-22 23:22:30 +02:00
|
|
|
|
|
|
|
return func() (interface{}, string, error) {
|
|
|
|
|
2015-04-15 22:02:52 +02:00
|
|
|
deleteOpts := rds.DeleteDBParameterGroupInput{
|
2015-02-26 16:33:33 +01:00
|
|
|
DBParameterGroupName: aws.String(d.Id()),
|
2014-10-22 23:22:30 +02:00
|
|
|
}
|
|
|
|
|
2015-04-15 22:02:52 +02:00
|
|
|
if _, err := rdsconn.DeleteDBParameterGroup(&deleteOpts); err != nil {
|
2015-02-26 16:33:33 +01:00
|
|
|
rdserr, ok := err.(aws.APIError)
|
2014-10-22 23:22:30 +02:00
|
|
|
if !ok {
|
|
|
|
return d, "error", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if rdserr.Code != "DBParameterGroupNotFoundFault" {
|
|
|
|
return d, "error", err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return d, "destroyed", nil
|
|
|
|
}
|
|
|
|
}
|
2014-11-21 17:58:34 +01:00
|
|
|
|
|
|
|
func resourceAwsDbParameterHash(v interface{}) int {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
m := v.(map[string]interface{})
|
|
|
|
buf.WriteString(fmt.Sprintf("%s-", m["name"].(string)))
|
2015-03-17 23:22:30 +01:00
|
|
|
// Store the value as a lower case string, to match how we store them in flattenParameters
|
|
|
|
buf.WriteString(fmt.Sprintf("%s-", strings.ToLower(m["value"].(string))))
|
2014-11-21 17:58:34 +01:00
|
|
|
|
|
|
|
return hashcode.String(buf.String())
|
|
|
|
}
|