2015-04-26 03:53:21 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
2015-05-13 00:05:03 +02:00
|
|
|
"sort"
|
2015-05-14 18:44:24 +02:00
|
|
|
"strings"
|
2015-04-26 03:53:21 +02:00
|
|
|
"time"
|
|
|
|
|
2015-06-03 20:36:57 +02:00
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
|
|
|
"github.com/aws/aws-sdk-go/service/elasticache"
|
|
|
|
"github.com/aws/aws-sdk-go/service/iam"
|
2015-04-26 03:53:21 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/hashcode"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
)
|
|
|
|
|
2015-04-28 18:30:15 +02:00
|
|
|
func resourceAwsElasticacheCluster() *schema.Resource {
|
2015-04-26 03:53:21 +02:00
|
|
|
return &schema.Resource{
|
2015-04-28 18:30:15 +02:00
|
|
|
Create: resourceAwsElasticacheClusterCreate,
|
|
|
|
Read: resourceAwsElasticacheClusterRead,
|
2015-05-14 18:44:24 +02:00
|
|
|
Update: resourceAwsElasticacheClusterUpdate,
|
2015-04-28 18:30:15 +02:00
|
|
|
Delete: resourceAwsElasticacheClusterDelete,
|
2015-04-26 03:53:21 +02:00
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"cluster_id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
2015-09-15 01:50:53 +02:00
|
|
|
StateFunc: func(val interface{}) string {
|
|
|
|
// Elasticache normalizes cluster ids to lowercase,
|
|
|
|
// so we have to do this too or else we can end up
|
|
|
|
// with non-converging diffs.
|
|
|
|
return strings.ToLower(val.(string))
|
|
|
|
},
|
2015-04-26 03:53:21 +02:00
|
|
|
},
|
2015-09-16 18:15:31 +02:00
|
|
|
"configuration_endpoint": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
2015-04-26 03:53:21 +02:00
|
|
|
"engine": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"node_type": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
"num_cache_nodes": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"parameter_group_name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
2015-05-14 18:12:07 +02:00
|
|
|
Computed: true,
|
2015-04-26 03:53:21 +02:00
|
|
|
},
|
|
|
|
"port": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
2015-06-01 00:01:07 +02:00
|
|
|
Required: true,
|
2015-04-26 03:53:21 +02:00
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
"engine_version": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
2015-05-07 15:42:28 +02:00
|
|
|
Computed: true,
|
2015-04-26 03:53:21 +02:00
|
|
|
},
|
2015-07-07 18:41:46 +02:00
|
|
|
"maintenance_window": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
Computed: true,
|
|
|
|
},
|
2015-04-26 03:53:21 +02:00
|
|
|
"subnet_group_name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
2015-05-08 18:27:43 +02:00
|
|
|
Computed: true,
|
2015-04-26 03:53:21 +02:00
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
"security_group_names": &schema.Schema{
|
|
|
|
Type: schema.TypeSet,
|
|
|
|
Optional: true,
|
|
|
|
Computed: true,
|
|
|
|
ForceNew: true,
|
|
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
|
|
Set: func(v interface{}) int {
|
|
|
|
return hashcode.String(v.(string))
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"security_group_ids": &schema.Schema{
|
|
|
|
Type: schema.TypeSet,
|
|
|
|
Optional: true,
|
|
|
|
Computed: true,
|
|
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
|
|
Set: func(v interface{}) int {
|
|
|
|
return hashcode.String(v.(string))
|
|
|
|
},
|
|
|
|
},
|
2015-05-13 00:05:03 +02:00
|
|
|
// Exported Attributes
|
|
|
|
"cache_nodes": &schema.Schema{
|
|
|
|
Type: schema.TypeList,
|
|
|
|
Computed: true,
|
|
|
|
Elem: &schema.Resource{
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
"address": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
"port": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-05-14 18:44:24 +02:00
|
|
|
|
2015-07-07 00:19:15 +02:00
|
|
|
// A single-element string list containing an Amazon Resource Name (ARN) that
|
|
|
|
// uniquely identifies a Redis RDB snapshot file stored in Amazon S3. The snapshot
|
|
|
|
// file will be used to populate the node group.
|
|
|
|
//
|
|
|
|
// See also:
|
|
|
|
// https://github.com/aws/aws-sdk-go/blob/4862a174f7fc92fb523fc39e68f00b87d91d2c3d/service/elasticache/api.go#L2079
|
|
|
|
"snapshot_arns": &schema.Schema{
|
|
|
|
Type: schema.TypeSet,
|
|
|
|
Optional: true,
|
|
|
|
ForceNew: true,
|
|
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
|
|
Set: func(v interface{}) int {
|
|
|
|
return hashcode.String(v.(string))
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-05-14 18:44:24 +02:00
|
|
|
"tags": tagsSchema(),
|
2015-06-24 22:56:59 +02:00
|
|
|
|
2015-06-25 18:01:51 +02:00
|
|
|
// apply_immediately is used to determine when the update modifications
|
|
|
|
// take place.
|
|
|
|
// See http://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_ModifyCacheCluster.html
|
|
|
|
"apply_immediately": &schema.Schema{
|
|
|
|
Type: schema.TypeBool,
|
|
|
|
Optional: true,
|
|
|
|
Computed: true,
|
|
|
|
},
|
2015-04-26 03:53:21 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-28 18:30:15 +02:00
|
|
|
func resourceAwsElasticacheClusterCreate(d *schema.ResourceData, meta interface{}) error {
|
2015-04-26 03:53:21 +02:00
|
|
|
conn := meta.(*AWSClient).elasticacheconn
|
|
|
|
|
|
|
|
clusterId := d.Get("cluster_id").(string)
|
|
|
|
nodeType := d.Get("node_type").(string) // e.g) cache.m1.small
|
|
|
|
numNodes := int64(d.Get("num_cache_nodes").(int)) // 2
|
|
|
|
engine := d.Get("engine").(string) // memcached
|
|
|
|
engineVersion := d.Get("engine_version").(string) // 1.4.14
|
2015-06-01 00:01:07 +02:00
|
|
|
port := int64(d.Get("port").(int)) // e.g) 11211
|
2015-04-26 03:53:21 +02:00
|
|
|
subnetGroupName := d.Get("subnet_group_name").(string)
|
|
|
|
securityNameSet := d.Get("security_group_names").(*schema.Set)
|
|
|
|
securityIdSet := d.Get("security_group_ids").(*schema.Set)
|
|
|
|
|
|
|
|
securityNames := expandStringList(securityNameSet.List())
|
|
|
|
securityIds := expandStringList(securityIdSet.List())
|
|
|
|
|
2015-05-14 18:44:24 +02:00
|
|
|
tags := tagsFromMapEC(d.Get("tags").(map[string]interface{}))
|
2015-04-26 03:53:21 +02:00
|
|
|
req := &elasticache.CreateCacheClusterInput{
|
2015-08-17 20:27:16 +02:00
|
|
|
CacheClusterId: aws.String(clusterId),
|
2015-04-26 03:53:21 +02:00
|
|
|
CacheNodeType: aws.String(nodeType),
|
2015-07-28 22:29:46 +02:00
|
|
|
NumCacheNodes: aws.Int64(numNodes),
|
2015-04-26 03:53:21 +02:00
|
|
|
Engine: aws.String(engine),
|
|
|
|
EngineVersion: aws.String(engineVersion),
|
2015-07-28 22:29:46 +02:00
|
|
|
Port: aws.Int64(port),
|
2015-04-26 03:53:21 +02:00
|
|
|
CacheSubnetGroupName: aws.String(subnetGroupName),
|
|
|
|
CacheSecurityGroupNames: securityNames,
|
2015-08-17 20:27:16 +02:00
|
|
|
SecurityGroupIds: securityIds,
|
2015-05-14 18:44:24 +02:00
|
|
|
Tags: tags,
|
2015-05-14 18:12:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// parameter groups are optional and can be defaulted by AWS
|
|
|
|
if v, ok := d.GetOk("parameter_group_name"); ok {
|
|
|
|
req.CacheParameterGroupName = aws.String(v.(string))
|
2015-04-26 03:53:21 +02:00
|
|
|
}
|
|
|
|
|
2015-07-07 18:41:46 +02:00
|
|
|
if v, ok := d.GetOk("maintenance_window"); ok {
|
|
|
|
req.PreferredMaintenanceWindow = aws.String(v.(string))
|
|
|
|
}
|
|
|
|
|
2015-07-07 00:19:15 +02:00
|
|
|
snaps := d.Get("snapshot_arns").(*schema.Set).List()
|
|
|
|
if len(snaps) > 0 {
|
|
|
|
s := expandStringList(snaps)
|
2015-08-17 20:27:16 +02:00
|
|
|
req.SnapshotArns = s
|
2015-07-07 00:19:15 +02:00
|
|
|
log.Printf("[DEBUG] Restoring Redis cluster from S3 snapshot: %#v", s)
|
|
|
|
}
|
|
|
|
|
2015-07-24 17:01:41 +02:00
|
|
|
resp, err := conn.CreateCacheCluster(req)
|
2015-04-26 03:53:21 +02:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating Elasticache: %s", err)
|
|
|
|
}
|
|
|
|
|
2015-09-15 01:50:53 +02:00
|
|
|
// Assign the cluster id as the resource ID
|
|
|
|
// Elasticache always retains the id in lower case, so we have to
|
|
|
|
// mimic that or else we won't be able to refresh a resource whose
|
|
|
|
// name contained uppercase characters.
|
|
|
|
d.SetId(strings.ToLower(*resp.CacheCluster.CacheClusterId))
|
2015-07-24 17:01:41 +02:00
|
|
|
|
2015-04-26 03:53:21 +02:00
|
|
|
pending := []string{"creating"}
|
|
|
|
stateConf := &resource.StateChangeConf{
|
|
|
|
Pending: pending,
|
|
|
|
Target: "available",
|
2015-07-29 18:13:19 +02:00
|
|
|
Refresh: cacheClusterStateRefreshFunc(conn, d.Id(), "available", pending),
|
2015-04-26 03:53:21 +02:00
|
|
|
Timeout: 10 * time.Minute,
|
|
|
|
Delay: 10 * time.Second,
|
|
|
|
MinTimeout: 3 * time.Second,
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Waiting for state to become available: %v", d.Id())
|
|
|
|
_, sterr := stateConf.WaitForState()
|
|
|
|
if sterr != nil {
|
|
|
|
return fmt.Errorf("Error waiting for elasticache (%s) to be created: %s", d.Id(), sterr)
|
|
|
|
}
|
|
|
|
|
2015-05-14 18:12:07 +02:00
|
|
|
return resourceAwsElasticacheClusterRead(d, meta)
|
2015-04-26 03:53:21 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 18:30:15 +02:00
|
|
|
func resourceAwsElasticacheClusterRead(d *schema.ResourceData, meta interface{}) error {
|
2015-04-26 03:53:21 +02:00
|
|
|
conn := meta.(*AWSClient).elasticacheconn
|
|
|
|
req := &elasticache.DescribeCacheClustersInput{
|
2015-08-17 20:27:16 +02:00
|
|
|
CacheClusterId: aws.String(d.Id()),
|
2015-07-28 22:29:46 +02:00
|
|
|
ShowCacheNodeInfo: aws.Bool(true),
|
2015-04-26 03:53:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
res, err := conn.DescribeCacheClusters(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res.CacheClusters) == 1 {
|
|
|
|
c := res.CacheClusters[0]
|
2015-08-17 20:27:16 +02:00
|
|
|
d.Set("cluster_id", c.CacheClusterId)
|
2015-04-26 03:53:21 +02:00
|
|
|
d.Set("node_type", c.CacheNodeType)
|
|
|
|
d.Set("num_cache_nodes", c.NumCacheNodes)
|
|
|
|
d.Set("engine", c.Engine)
|
|
|
|
d.Set("engine_version", c.EngineVersion)
|
|
|
|
if c.ConfigurationEndpoint != nil {
|
|
|
|
d.Set("port", c.ConfigurationEndpoint.Port)
|
2015-09-16 18:15:31 +02:00
|
|
|
d.Set("configuration_endpoint", aws.String(fmt.Sprintf("%s:%d", *c.ConfigurationEndpoint.Address, *c.ConfigurationEndpoint.Port)))
|
2015-04-26 03:53:21 +02:00
|
|
|
}
|
2015-09-16 14:06:54 +02:00
|
|
|
|
2015-04-26 03:53:21 +02:00
|
|
|
d.Set("subnet_group_name", c.CacheSubnetGroupName)
|
|
|
|
d.Set("security_group_names", c.CacheSecurityGroups)
|
|
|
|
d.Set("security_group_ids", c.SecurityGroups)
|
|
|
|
d.Set("parameter_group_name", c.CacheParameterGroup)
|
2015-07-07 18:41:46 +02:00
|
|
|
d.Set("maintenance_window", c.PreferredMaintenanceWindow)
|
2015-05-13 00:05:03 +02:00
|
|
|
|
|
|
|
if err := setCacheNodeData(d, c); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-05-14 18:44:24 +02:00
|
|
|
// list tags for resource
|
|
|
|
// set tags
|
|
|
|
arn, err := buildECARN(d, meta)
|
|
|
|
if err != nil {
|
2015-08-17 20:27:16 +02:00
|
|
|
log.Printf("[DEBUG] Error building ARN for ElastiCache Cluster, not setting Tags for cluster %s", *c.CacheClusterId)
|
2015-05-14 18:44:24 +02:00
|
|
|
} else {
|
|
|
|
resp, err := conn.ListTagsForResource(&elasticache.ListTagsForResourceInput{
|
|
|
|
ResourceName: aws.String(arn),
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
2015-09-11 20:56:20 +02:00
|
|
|
log.Printf("[DEBUG] Error retrieving tags for ARN: %s", arn)
|
2015-05-14 18:44:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var et []*elasticache.Tag
|
|
|
|
if len(resp.TagList) > 0 {
|
|
|
|
et = resp.TagList
|
|
|
|
}
|
|
|
|
d.Set("tags", tagsToMapEC(et))
|
|
|
|
}
|
2015-04-26 03:53:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-05-14 18:44:24 +02:00
|
|
|
func resourceAwsElasticacheClusterUpdate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).elasticacheconn
|
|
|
|
arn, err := buildECARN(d, meta)
|
|
|
|
if err != nil {
|
2015-05-14 18:51:08 +02:00
|
|
|
log.Printf("[DEBUG] Error building ARN for ElastiCache Cluster, not updating Tags for cluster %s", d.Id())
|
2015-05-14 18:44:24 +02:00
|
|
|
} else {
|
|
|
|
if err := setTagsEC(conn, d, arn); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2015-06-24 22:56:59 +02:00
|
|
|
|
2015-06-25 18:01:51 +02:00
|
|
|
req := &elasticache.ModifyCacheClusterInput{
|
2015-08-17 20:27:16 +02:00
|
|
|
CacheClusterId: aws.String(d.Id()),
|
2015-07-28 22:29:46 +02:00
|
|
|
ApplyImmediately: aws.Bool(d.Get("apply_immediately").(bool)),
|
2015-06-25 18:01:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
requestUpdate := false
|
|
|
|
if d.HasChange("security_group_ids") {
|
|
|
|
if attr := d.Get("security_group_ids").(*schema.Set); attr.Len() > 0 {
|
2015-08-17 20:27:16 +02:00
|
|
|
req.SecurityGroupIds = expandStringList(attr.List())
|
2015-06-25 18:01:51 +02:00
|
|
|
requestUpdate = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.HasChange("parameter_group_name") {
|
|
|
|
req.CacheParameterGroupName = aws.String(d.Get("parameter_group_name").(string))
|
|
|
|
requestUpdate = true
|
|
|
|
}
|
|
|
|
|
2015-07-07 18:41:46 +02:00
|
|
|
if d.HasChange("maintenance_window") {
|
|
|
|
req.PreferredMaintenanceWindow = aws.String(d.Get("maintenance_window").(string))
|
|
|
|
requestUpdate = true
|
|
|
|
}
|
|
|
|
|
2015-06-25 18:01:51 +02:00
|
|
|
if d.HasChange("engine_version") {
|
|
|
|
req.EngineVersion = aws.String(d.Get("engine_version").(string))
|
|
|
|
requestUpdate = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.HasChange("num_cache_nodes") {
|
2015-07-28 22:29:46 +02:00
|
|
|
req.NumCacheNodes = aws.Int64(int64(d.Get("num_cache_nodes").(int)))
|
2015-06-25 18:01:51 +02:00
|
|
|
requestUpdate = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if requestUpdate {
|
2015-07-28 22:29:46 +02:00
|
|
|
log.Printf("[DEBUG] Modifying ElastiCache Cluster (%s), opts:\n%s", d.Id(), req)
|
2015-06-25 18:01:51 +02:00
|
|
|
_, err := conn.ModifyCacheCluster(req)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("[WARN] Error updating ElastiCache cluster (%s), error: %s", d.Id(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Waiting for update: %s", d.Id())
|
|
|
|
pending := []string{"modifying", "rebooting cache cluster nodes", "snapshotting"}
|
|
|
|
stateConf := &resource.StateChangeConf{
|
|
|
|
Pending: pending,
|
|
|
|
Target: "available",
|
|
|
|
Refresh: cacheClusterStateRefreshFunc(conn, d.Id(), "available", pending),
|
|
|
|
Timeout: 5 * time.Minute,
|
|
|
|
Delay: 5 * time.Second,
|
|
|
|
MinTimeout: 3 * time.Second,
|
|
|
|
}
|
|
|
|
|
|
|
|
_, sterr := stateConf.WaitForState()
|
|
|
|
if sterr != nil {
|
|
|
|
return fmt.Errorf("Error waiting for elasticache (%s) to update: %s", d.Id(), sterr)
|
|
|
|
}
|
|
|
|
}
|
2015-06-24 22:56:59 +02:00
|
|
|
|
2015-05-14 18:44:24 +02:00
|
|
|
return resourceAwsElasticacheClusterRead(d, meta)
|
|
|
|
}
|
|
|
|
|
2015-05-13 00:05:03 +02:00
|
|
|
func setCacheNodeData(d *schema.ResourceData, c *elasticache.CacheCluster) error {
|
|
|
|
sortedCacheNodes := make([]*elasticache.CacheNode, len(c.CacheNodes))
|
|
|
|
copy(sortedCacheNodes, c.CacheNodes)
|
|
|
|
sort.Sort(byCacheNodeId(sortedCacheNodes))
|
|
|
|
|
|
|
|
cacheNodeData := make([]map[string]interface{}, 0, len(sortedCacheNodes))
|
|
|
|
|
|
|
|
for _, node := range sortedCacheNodes {
|
2015-08-17 20:27:16 +02:00
|
|
|
if node.CacheNodeId == nil || node.Endpoint == nil || node.Endpoint.Address == nil || node.Endpoint.Port == nil {
|
2015-07-28 22:29:46 +02:00
|
|
|
return fmt.Errorf("Unexpected nil pointer in: %s", node)
|
2015-05-13 00:05:03 +02:00
|
|
|
}
|
|
|
|
cacheNodeData = append(cacheNodeData, map[string]interface{}{
|
2015-08-17 20:27:16 +02:00
|
|
|
"id": *node.CacheNodeId,
|
2015-05-14 18:12:07 +02:00
|
|
|
"address": *node.Endpoint.Address,
|
|
|
|
"port": int(*node.Endpoint.Port),
|
2015-05-13 00:05:03 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return d.Set("cache_nodes", cacheNodeData)
|
|
|
|
}
|
|
|
|
|
|
|
|
type byCacheNodeId []*elasticache.CacheNode
|
|
|
|
|
|
|
|
func (b byCacheNodeId) Len() int { return len(b) }
|
|
|
|
func (b byCacheNodeId) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
|
|
|
|
func (b byCacheNodeId) Less(i, j int) bool {
|
2015-08-17 20:27:16 +02:00
|
|
|
return b[i].CacheNodeId != nil && b[j].CacheNodeId != nil &&
|
|
|
|
*b[i].CacheNodeId < *b[j].CacheNodeId
|
2015-05-13 00:05:03 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 18:30:15 +02:00
|
|
|
func resourceAwsElasticacheClusterDelete(d *schema.ResourceData, meta interface{}) error {
|
2015-04-26 03:53:21 +02:00
|
|
|
conn := meta.(*AWSClient).elasticacheconn
|
|
|
|
|
|
|
|
req := &elasticache.DeleteCacheClusterInput{
|
2015-08-17 20:27:16 +02:00
|
|
|
CacheClusterId: aws.String(d.Id()),
|
2015-04-26 03:53:21 +02:00
|
|
|
}
|
|
|
|
_, err := conn.DeleteCacheCluster(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] Waiting for deletion: %v", d.Id())
|
|
|
|
stateConf := &resource.StateChangeConf{
|
|
|
|
Pending: []string{"creating", "available", "deleting", "incompatible-parameters", "incompatible-network", "restore-failed"},
|
|
|
|
Target: "",
|
2015-06-25 18:01:51 +02:00
|
|
|
Refresh: cacheClusterStateRefreshFunc(conn, d.Id(), "", []string{}),
|
2015-04-26 03:53:21 +02:00
|
|
|
Timeout: 10 * time.Minute,
|
|
|
|
Delay: 10 * time.Second,
|
|
|
|
MinTimeout: 3 * time.Second,
|
|
|
|
}
|
|
|
|
|
|
|
|
_, sterr := stateConf.WaitForState()
|
|
|
|
if sterr != nil {
|
|
|
|
return fmt.Errorf("Error waiting for elasticache (%s) to delete: %s", d.Id(), sterr)
|
|
|
|
}
|
|
|
|
|
|
|
|
d.SetId("")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-06-25 18:01:51 +02:00
|
|
|
func cacheClusterStateRefreshFunc(conn *elasticache.ElastiCache, clusterID, givenState string, pending []string) resource.StateRefreshFunc {
|
2015-04-26 03:53:21 +02:00
|
|
|
return func() (interface{}, string, error) {
|
|
|
|
resp, err := conn.DescribeCacheClusters(&elasticache.DescribeCacheClustersInput{
|
2015-08-17 20:27:16 +02:00
|
|
|
CacheClusterId: aws.String(clusterID),
|
2015-07-28 22:29:46 +02:00
|
|
|
ShowCacheNodeInfo: aws.Bool(true),
|
2015-04-26 03:53:21 +02:00
|
|
|
})
|
|
|
|
if err != nil {
|
2015-05-20 13:21:23 +02:00
|
|
|
apierr := err.(awserr.Error)
|
|
|
|
log.Printf("[DEBUG] message: %v, code: %v", apierr.Message(), apierr.Code())
|
|
|
|
if apierr.Message() == fmt.Sprintf("CacheCluster not found: %v", clusterID) {
|
2015-04-26 03:53:21 +02:00
|
|
|
log.Printf("[DEBUG] Detect deletion")
|
|
|
|
return nil, "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[ERROR] CacheClusterStateRefreshFunc: %s", err)
|
|
|
|
return nil, "", err
|
|
|
|
}
|
|
|
|
|
2015-07-24 17:01:41 +02:00
|
|
|
if len(resp.CacheClusters) == 0 {
|
|
|
|
return nil, "", fmt.Errorf("[WARN] Error: no Cache Clusters found for id (%s)", clusterID)
|
|
|
|
}
|
|
|
|
|
|
|
|
var c *elasticache.CacheCluster
|
|
|
|
for _, cluster := range resp.CacheClusters {
|
2015-08-17 20:27:16 +02:00
|
|
|
if *cluster.CacheClusterId == clusterID {
|
|
|
|
log.Printf("[DEBUG] Found matching ElastiCache cluster: %s", *cluster.CacheClusterId)
|
2015-07-24 17:01:41 +02:00
|
|
|
c = cluster
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == nil {
|
|
|
|
return nil, "", fmt.Errorf("[WARN] Error: no matching Elastic Cache cluster for id (%s)", clusterID)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] ElastiCache Cluster (%s) status: %v", clusterID, *c.CacheClusterStatus)
|
2015-04-26 03:53:21 +02:00
|
|
|
|
|
|
|
// return the current state if it's in the pending array
|
|
|
|
for _, p := range pending {
|
2015-07-24 17:01:41 +02:00
|
|
|
log.Printf("[DEBUG] ElastiCache: checking pending state (%s) for cluster (%s), cluster status: %s", pending, clusterID, *c.CacheClusterStatus)
|
2015-04-26 03:53:21 +02:00
|
|
|
s := *c.CacheClusterStatus
|
|
|
|
if p == s {
|
|
|
|
log.Printf("[DEBUG] Return with status: %v", *c.CacheClusterStatus)
|
|
|
|
return c, p, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// return given state if it's not in pending
|
|
|
|
if givenState != "" {
|
2015-07-24 17:01:41 +02:00
|
|
|
log.Printf("[DEBUG] ElastiCache: checking given state (%s) of cluster (%s) against cluster status (%s)", givenState, clusterID, *c.CacheClusterStatus)
|
2015-05-29 17:09:54 +02:00
|
|
|
// check to make sure we have the node count we're expecting
|
|
|
|
if int64(len(c.CacheNodes)) != *c.NumCacheNodes {
|
|
|
|
log.Printf("[DEBUG] Node count is not what is expected: %d found, %d expected", len(c.CacheNodes), *c.NumCacheNodes)
|
|
|
|
return nil, "creating", nil
|
|
|
|
}
|
2015-07-24 17:01:41 +02:00
|
|
|
|
|
|
|
log.Printf("[DEBUG] Node count matched (%d)", len(c.CacheNodes))
|
2015-05-29 00:36:21 +02:00
|
|
|
// loop the nodes and check their status as well
|
|
|
|
for _, n := range c.CacheNodes {
|
2015-07-24 17:01:41 +02:00
|
|
|
log.Printf("[DEBUG] Checking cache node for status: %s", n)
|
2015-05-29 00:36:21 +02:00
|
|
|
if n.CacheNodeStatus != nil && *n.CacheNodeStatus != "available" {
|
2015-08-17 20:27:16 +02:00
|
|
|
log.Printf("[DEBUG] Node (%s) is not yet available, status: %s", *n.CacheNodeId, *n.CacheNodeStatus)
|
2015-05-29 00:36:21 +02:00
|
|
|
return nil, "creating", nil
|
|
|
|
}
|
2015-07-24 17:01:41 +02:00
|
|
|
log.Printf("[DEBUG] Cache node not in expected state")
|
2015-05-29 00:36:21 +02:00
|
|
|
}
|
2015-07-24 17:01:41 +02:00
|
|
|
log.Printf("[DEBUG] ElastiCache returning given state (%s), cluster: %s", givenState, c)
|
2015-04-26 03:53:21 +02:00
|
|
|
return c, givenState, nil
|
|
|
|
}
|
|
|
|
log.Printf("[DEBUG] current status: %v", *c.CacheClusterStatus)
|
|
|
|
return c, *c.CacheClusterStatus, nil
|
|
|
|
}
|
|
|
|
}
|
2015-05-14 18:44:24 +02:00
|
|
|
|
|
|
|
func buildECARN(d *schema.ResourceData, meta interface{}) (string, error) {
|
|
|
|
iamconn := meta.(*AWSClient).iamconn
|
|
|
|
region := meta.(*AWSClient).region
|
|
|
|
// An zero value GetUserInput{} defers to the currently logged in user
|
|
|
|
resp, err := iamconn.GetUser(&iam.GetUserInput{})
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2015-08-17 20:27:16 +02:00
|
|
|
userARN := *resp.User.Arn
|
2015-05-14 18:44:24 +02:00
|
|
|
accountID := strings.Split(userARN, ":")[4]
|
|
|
|
arn := fmt.Sprintf("arn:aws:elasticache:%s:%s:cluster:%s", region, accountID, d.Id())
|
|
|
|
return arn, nil
|
|
|
|
}
|