Merge pull request #3443 from TimeIncOSS/f-aws-es
provider/aws: Add support for Elastic Search
This commit is contained in:
commit
8364827a36
|
@ -18,6 +18,7 @@ import (
|
||||||
"github.com/aws/aws-sdk-go/service/ecs"
|
"github.com/aws/aws-sdk-go/service/ecs"
|
||||||
"github.com/aws/aws-sdk-go/service/efs"
|
"github.com/aws/aws-sdk-go/service/efs"
|
||||||
"github.com/aws/aws-sdk-go/service/elasticache"
|
"github.com/aws/aws-sdk-go/service/elasticache"
|
||||||
|
elasticsearch "github.com/aws/aws-sdk-go/service/elasticsearchservice"
|
||||||
"github.com/aws/aws-sdk-go/service/elb"
|
"github.com/aws/aws-sdk-go/service/elb"
|
||||||
"github.com/aws/aws-sdk-go/service/iam"
|
"github.com/aws/aws-sdk-go/service/iam"
|
||||||
"github.com/aws/aws-sdk-go/service/kinesis"
|
"github.com/aws/aws-sdk-go/service/kinesis"
|
||||||
|
@ -51,6 +52,7 @@ type AWSClient struct {
|
||||||
ecsconn *ecs.ECS
|
ecsconn *ecs.ECS
|
||||||
efsconn *efs.EFS
|
efsconn *efs.EFS
|
||||||
elbconn *elb.ELB
|
elbconn *elb.ELB
|
||||||
|
esconn *elasticsearch.ElasticsearchService
|
||||||
autoscalingconn *autoscaling.AutoScaling
|
autoscalingconn *autoscaling.AutoScaling
|
||||||
s3conn *s3.S3
|
s3conn *s3.S3
|
||||||
sqsconn *sqs.SQS
|
sqsconn *sqs.SQS
|
||||||
|
@ -157,6 +159,9 @@ func (c *Config) Client() (interface{}, error) {
|
||||||
log.Println("[INFO] Initializing EFS Connection")
|
log.Println("[INFO] Initializing EFS Connection")
|
||||||
client.efsconn = efs.New(awsConfig)
|
client.efsconn = efs.New(awsConfig)
|
||||||
|
|
||||||
|
log.Println("[INFO] Initializing ElasticSearch Connection")
|
||||||
|
client.esconn = elasticsearch.New(awsConfig)
|
||||||
|
|
||||||
log.Println("[INFO] Initializing Route 53 connection")
|
log.Println("[INFO] Initializing Route 53 connection")
|
||||||
client.r53conn = route53.New(usEast1AwsConfig)
|
client.r53conn = route53.New(usEast1AwsConfig)
|
||||||
|
|
||||||
|
|
|
@ -182,6 +182,7 @@ func Provider() terraform.ResourceProvider {
|
||||||
"aws_elasticache_parameter_group": resourceAwsElasticacheParameterGroup(),
|
"aws_elasticache_parameter_group": resourceAwsElasticacheParameterGroup(),
|
||||||
"aws_elasticache_security_group": resourceAwsElasticacheSecurityGroup(),
|
"aws_elasticache_security_group": resourceAwsElasticacheSecurityGroup(),
|
||||||
"aws_elasticache_subnet_group": resourceAwsElasticacheSubnetGroup(),
|
"aws_elasticache_subnet_group": resourceAwsElasticacheSubnetGroup(),
|
||||||
|
"aws_elasticsearch_domain": resourceAwsElasticSearchDomain(),
|
||||||
"aws_elb": resourceAwsElb(),
|
"aws_elb": resourceAwsElb(),
|
||||||
"aws_flow_log": resourceAwsFlowLog(),
|
"aws_flow_log": resourceAwsFlowLog(),
|
||||||
"aws_iam_access_key": resourceAwsIamAccessKey(),
|
"aws_iam_access_key": resourceAwsIamAccessKey(),
|
||||||
|
|
|
@ -0,0 +1,399 @@
|
||||||
|
package aws
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"regexp"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
||||||
|
elasticsearch "github.com/aws/aws-sdk-go/service/elasticsearchservice"
|
||||||
|
"github.com/hashicorp/terraform/helper/resource"
|
||||||
|
"github.com/hashicorp/terraform/helper/schema"
|
||||||
|
)
|
||||||
|
|
||||||
|
func resourceAwsElasticSearchDomain() *schema.Resource {
|
||||||
|
return &schema.Resource{
|
||||||
|
Create: resourceAwsElasticSearchDomainCreate,
|
||||||
|
Read: resourceAwsElasticSearchDomainRead,
|
||||||
|
Update: resourceAwsElasticSearchDomainUpdate,
|
||||||
|
Delete: resourceAwsElasticSearchDomainDelete,
|
||||||
|
|
||||||
|
Schema: map[string]*schema.Schema{
|
||||||
|
"access_policies": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
StateFunc: normalizeJson,
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
|
"advanced_options": &schema.Schema{
|
||||||
|
Type: schema.TypeMap,
|
||||||
|
Optional: true,
|
||||||
|
Computed: true,
|
||||||
|
},
|
||||||
|
"domain_name": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Required: true,
|
||||||
|
ForceNew: true,
|
||||||
|
ValidateFunc: func(v interface{}, k string) (ws []string, errors []error) {
|
||||||
|
value := v.(string)
|
||||||
|
if !regexp.MustCompile(`^[0-9A-Za-z]+`).MatchString(value) {
|
||||||
|
errors = append(errors, fmt.Errorf(
|
||||||
|
"%q must start with a letter or number", k))
|
||||||
|
}
|
||||||
|
if !regexp.MustCompile(`^[0-9A-Za-z][0-9a-z-]+$`).MatchString(value) {
|
||||||
|
errors = append(errors, fmt.Errorf(
|
||||||
|
"%q can only contain lowercase characters, numbers and hyphens", k))
|
||||||
|
}
|
||||||
|
return
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"arn": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Computed: true,
|
||||||
|
},
|
||||||
|
"domain_id": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Computed: true,
|
||||||
|
},
|
||||||
|
"endpoint": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Computed: true,
|
||||||
|
},
|
||||||
|
"ebs_options": &schema.Schema{
|
||||||
|
Type: schema.TypeList,
|
||||||
|
Optional: true,
|
||||||
|
Computed: true,
|
||||||
|
Elem: &schema.Resource{
|
||||||
|
Schema: map[string]*schema.Schema{
|
||||||
|
"ebs_enabled": &schema.Schema{
|
||||||
|
Type: schema.TypeBool,
|
||||||
|
Required: true,
|
||||||
|
},
|
||||||
|
"iops": &schema.Schema{
|
||||||
|
Type: schema.TypeInt,
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
|
"volume_size": &schema.Schema{
|
||||||
|
Type: schema.TypeInt,
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
|
"volume_type": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"cluster_config": &schema.Schema{
|
||||||
|
Type: schema.TypeList,
|
||||||
|
Optional: true,
|
||||||
|
Computed: true,
|
||||||
|
Elem: &schema.Resource{
|
||||||
|
Schema: map[string]*schema.Schema{
|
||||||
|
"dedicated_master_count": &schema.Schema{
|
||||||
|
Type: schema.TypeInt,
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
|
"dedicated_master_enabled": &schema.Schema{
|
||||||
|
Type: schema.TypeBool,
|
||||||
|
Optional: true,
|
||||||
|
Default: false,
|
||||||
|
},
|
||||||
|
"dedicated_master_type": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
|
"instance_count": &schema.Schema{
|
||||||
|
Type: schema.TypeInt,
|
||||||
|
Optional: true,
|
||||||
|
Default: 1,
|
||||||
|
},
|
||||||
|
"instance_type": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Optional: true,
|
||||||
|
Default: "m3.medium.elasticsearch",
|
||||||
|
},
|
||||||
|
"zone_awareness_enabled": &schema.Schema{
|
||||||
|
Type: schema.TypeBool,
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"snapshot_options": &schema.Schema{
|
||||||
|
Type: schema.TypeList,
|
||||||
|
Optional: true,
|
||||||
|
Elem: &schema.Resource{
|
||||||
|
Schema: map[string]*schema.Schema{
|
||||||
|
"automated_snapshot_start_hour": &schema.Schema{
|
||||||
|
Type: schema.TypeInt,
|
||||||
|
Required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func resourceAwsElasticSearchDomainCreate(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
conn := meta.(*AWSClient).esconn
|
||||||
|
|
||||||
|
input := elasticsearch.CreateElasticsearchDomainInput{
|
||||||
|
DomainName: aws.String(d.Get("domain_name").(string)),
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, ok := d.GetOk("access_policies"); ok {
|
||||||
|
input.AccessPolicies = aws.String(v.(string))
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, ok := d.GetOk("advanced_options"); ok {
|
||||||
|
input.AdvancedOptions = stringMapToPointers(v.(map[string]interface{}))
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, ok := d.GetOk("ebs_options"); ok {
|
||||||
|
options := v.([]interface{})
|
||||||
|
|
||||||
|
if len(options) > 1 {
|
||||||
|
return fmt.Errorf("Only a single ebs_options block is expected")
|
||||||
|
} else if len(options) == 1 {
|
||||||
|
if options[0] == nil {
|
||||||
|
return fmt.Errorf("At least one field is expected inside ebs_options")
|
||||||
|
}
|
||||||
|
|
||||||
|
s := options[0].(map[string]interface{})
|
||||||
|
input.EBSOptions = expandESEBSOptions(s)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, ok := d.GetOk("cluster_config"); ok {
|
||||||
|
config := v.([]interface{})
|
||||||
|
|
||||||
|
if len(config) > 1 {
|
||||||
|
return fmt.Errorf("Only a single cluster_config block is expected")
|
||||||
|
} else if len(config) == 1 {
|
||||||
|
if config[0] == nil {
|
||||||
|
return fmt.Errorf("At least one field is expected inside cluster_config")
|
||||||
|
}
|
||||||
|
m := config[0].(map[string]interface{})
|
||||||
|
input.ElasticsearchClusterConfig = expandESClusterConfig(m)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, ok := d.GetOk("snapshot_options"); ok {
|
||||||
|
options := v.([]interface{})
|
||||||
|
|
||||||
|
if len(options) > 1 {
|
||||||
|
return fmt.Errorf("Only a single snapshot_options block is expected")
|
||||||
|
} else if len(options) == 1 {
|
||||||
|
if options[0] == nil {
|
||||||
|
return fmt.Errorf("At least one field is expected inside snapshot_options")
|
||||||
|
}
|
||||||
|
|
||||||
|
o := options[0].(map[string]interface{})
|
||||||
|
|
||||||
|
snapshotOptions := elasticsearch.SnapshotOptions{
|
||||||
|
AutomatedSnapshotStartHour: aws.Int64(int64(o["automated_snapshot_start_hour"].(int))),
|
||||||
|
}
|
||||||
|
|
||||||
|
input.SnapshotOptions = &snapshotOptions
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Printf("[DEBUG] Creating ElasticSearch domain: %s", input)
|
||||||
|
out, err := conn.CreateElasticsearchDomain(&input)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
d.SetId(*out.DomainStatus.ARN)
|
||||||
|
|
||||||
|
log.Printf("[DEBUG] Waiting for ElasticSearch domain %q to be created", d.Id())
|
||||||
|
err = resource.Retry(15*time.Minute, func() error {
|
||||||
|
out, err := conn.DescribeElasticsearchDomain(&elasticsearch.DescribeElasticsearchDomainInput{
|
||||||
|
DomainName: aws.String(d.Get("domain_name").(string)),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return resource.RetryError{Err: err}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !*out.DomainStatus.Processing && out.DomainStatus.Endpoint != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Errorf("%q: Timeout while waiting for the domain to be created", d.Id())
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Printf("[DEBUG] ElasticSearch domain %q created", d.Id())
|
||||||
|
|
||||||
|
return resourceAwsElasticSearchDomainRead(d, meta)
|
||||||
|
}
|
||||||
|
|
||||||
|
func resourceAwsElasticSearchDomainRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
conn := meta.(*AWSClient).esconn
|
||||||
|
|
||||||
|
out, err := conn.DescribeElasticsearchDomain(&elasticsearch.DescribeElasticsearchDomainInput{
|
||||||
|
DomainName: aws.String(d.Get("domain_name").(string)),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Printf("[DEBUG] Received ElasticSearch domain: %s", out)
|
||||||
|
|
||||||
|
ds := out.DomainStatus
|
||||||
|
|
||||||
|
d.Set("access_policies", *ds.AccessPolicies)
|
||||||
|
err = d.Set("advanced_options", pointersMapToStringList(ds.AdvancedOptions))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
d.Set("domain_id", *ds.DomainId)
|
||||||
|
d.Set("domain_name", *ds.DomainName)
|
||||||
|
if ds.Endpoint != nil {
|
||||||
|
d.Set("endpoint", *ds.Endpoint)
|
||||||
|
}
|
||||||
|
|
||||||
|
err = d.Set("ebs_options", flattenESEBSOptions(ds.EBSOptions))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = d.Set("cluster_config", flattenESClusterConfig(ds.ElasticsearchClusterConfig))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if ds.SnapshotOptions != nil {
|
||||||
|
d.Set("snapshot_options", map[string]interface{}{
|
||||||
|
"automated_snapshot_start_hour": *ds.SnapshotOptions.AutomatedSnapshotStartHour,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
d.Set("arn", *ds.ARN)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func resourceAwsElasticSearchDomainUpdate(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
conn := meta.(*AWSClient).esconn
|
||||||
|
|
||||||
|
input := elasticsearch.UpdateElasticsearchDomainConfigInput{
|
||||||
|
DomainName: aws.String(d.Get("domain_name").(string)),
|
||||||
|
}
|
||||||
|
|
||||||
|
if d.HasChange("access_policies") {
|
||||||
|
input.AccessPolicies = aws.String(d.Get("access_policies").(string))
|
||||||
|
}
|
||||||
|
|
||||||
|
if d.HasChange("advanced_options") {
|
||||||
|
input.AdvancedOptions = stringMapToPointers(d.Get("advanced_options").(map[string]interface{}))
|
||||||
|
}
|
||||||
|
|
||||||
|
if d.HasChange("ebs_options") {
|
||||||
|
options := d.Get("ebs_options").([]interface{})
|
||||||
|
|
||||||
|
if len(options) > 1 {
|
||||||
|
return fmt.Errorf("Only a single ebs_options block is expected")
|
||||||
|
} else if len(options) == 1 {
|
||||||
|
s := options[0].(map[string]interface{})
|
||||||
|
input.EBSOptions = expandESEBSOptions(s)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if d.HasChange("cluster_config") {
|
||||||
|
config := d.Get("cluster_config").([]interface{})
|
||||||
|
|
||||||
|
if len(config) > 1 {
|
||||||
|
return fmt.Errorf("Only a single cluster_config block is expected")
|
||||||
|
} else if len(config) == 1 {
|
||||||
|
m := config[0].(map[string]interface{})
|
||||||
|
input.ElasticsearchClusterConfig = expandESClusterConfig(m)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if d.HasChange("snapshot_options") {
|
||||||
|
options := d.Get("snapshot_options").([]interface{})
|
||||||
|
|
||||||
|
if len(options) > 1 {
|
||||||
|
return fmt.Errorf("Only a single snapshot_options block is expected")
|
||||||
|
} else if len(options) == 1 {
|
||||||
|
o := options[0].(map[string]interface{})
|
||||||
|
|
||||||
|
snapshotOptions := elasticsearch.SnapshotOptions{
|
||||||
|
AutomatedSnapshotStartHour: aws.Int64(int64(o["automated_snapshot_start_hour"].(int))),
|
||||||
|
}
|
||||||
|
|
||||||
|
input.SnapshotOptions = &snapshotOptions
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := conn.UpdateElasticsearchDomainConfig(&input)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
err = resource.Retry(25*time.Minute, func() error {
|
||||||
|
out, err := conn.DescribeElasticsearchDomain(&elasticsearch.DescribeElasticsearchDomainInput{
|
||||||
|
DomainName: aws.String(d.Get("domain_name").(string)),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return resource.RetryError{Err: err}
|
||||||
|
}
|
||||||
|
|
||||||
|
if *out.DomainStatus.Processing == false {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Errorf("%q: Timeout while waiting for changes to be processed", d.Id())
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return resourceAwsElasticSearchDomainRead(d, meta)
|
||||||
|
}
|
||||||
|
|
||||||
|
func resourceAwsElasticSearchDomainDelete(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
conn := meta.(*AWSClient).esconn
|
||||||
|
|
||||||
|
log.Printf("[DEBUG] Deleting ElasticSearch domain: %q", d.Get("domain_name").(string))
|
||||||
|
_, err := conn.DeleteElasticsearchDomain(&elasticsearch.DeleteElasticsearchDomainInput{
|
||||||
|
DomainName: aws.String(d.Get("domain_name").(string)),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Printf("[DEBUG] Waiting for ElasticSearch domain %q to be deleted", d.Get("domain_name").(string))
|
||||||
|
err = resource.Retry(15*time.Minute, func() error {
|
||||||
|
out, err := conn.DescribeElasticsearchDomain(&elasticsearch.DescribeElasticsearchDomainInput{
|
||||||
|
DomainName: aws.String(d.Get("domain_name").(string)),
|
||||||
|
})
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
awsErr, ok := err.(awserr.Error)
|
||||||
|
if !ok {
|
||||||
|
return resource.RetryError{Err: err}
|
||||||
|
}
|
||||||
|
|
||||||
|
if awsErr.Code() == "ResourceNotFoundException" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return resource.RetryError{Err: awsErr}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !*out.DomainStatus.Processing {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Errorf("%q: Timeout while waiting for the domain to be deleted", d.Id())
|
||||||
|
})
|
||||||
|
|
||||||
|
d.SetId("")
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
|
@ -0,0 +1,122 @@
|
||||||
|
package aws
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
|
elasticsearch "github.com/aws/aws-sdk-go/service/elasticsearchservice"
|
||||||
|
"github.com/hashicorp/terraform/helper/resource"
|
||||||
|
"github.com/hashicorp/terraform/terraform"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestAccAWSElasticSearchDomain_basic(t *testing.T) {
|
||||||
|
var domain elasticsearch.ElasticsearchDomainStatus
|
||||||
|
|
||||||
|
resource.Test(t, resource.TestCase{
|
||||||
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
Providers: testAccProviders,
|
||||||
|
CheckDestroy: testAccCheckESDomainDestroy,
|
||||||
|
Steps: []resource.TestStep{
|
||||||
|
resource.TestStep{
|
||||||
|
Config: testAccESDomainConfig_basic,
|
||||||
|
Check: resource.ComposeTestCheckFunc(
|
||||||
|
testAccCheckESDomainExists("aws_elasticsearch_domain.example", &domain),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestAccAWSElasticSearchDomain_complex(t *testing.T) {
|
||||||
|
var domain elasticsearch.ElasticsearchDomainStatus
|
||||||
|
|
||||||
|
resource.Test(t, resource.TestCase{
|
||||||
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
Providers: testAccProviders,
|
||||||
|
CheckDestroy: testAccCheckESDomainDestroy,
|
||||||
|
Steps: []resource.TestStep{
|
||||||
|
resource.TestStep{
|
||||||
|
Config: testAccESDomainConfig_complex,
|
||||||
|
Check: resource.ComposeTestCheckFunc(
|
||||||
|
testAccCheckESDomainExists("aws_elasticsearch_domain.example", &domain),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func testAccCheckESDomainExists(n string, domain *elasticsearch.ElasticsearchDomainStatus) resource.TestCheckFunc {
|
||||||
|
return func(s *terraform.State) error {
|
||||||
|
rs, ok := s.RootModule().Resources[n]
|
||||||
|
if !ok {
|
||||||
|
return fmt.Errorf("Not found: %s", n)
|
||||||
|
}
|
||||||
|
|
||||||
|
if rs.Primary.ID == "" {
|
||||||
|
return fmt.Errorf("No ES Domain ID is set")
|
||||||
|
}
|
||||||
|
|
||||||
|
conn := testAccProvider.Meta().(*AWSClient).esconn
|
||||||
|
opts := &elasticsearch.DescribeElasticsearchDomainInput{
|
||||||
|
DomainName: aws.String(rs.Primary.Attributes["domain_name"]),
|
||||||
|
}
|
||||||
|
|
||||||
|
resp, err := conn.DescribeElasticsearchDomain(opts)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("Error describing domain: %s", err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
*domain = *resp.DomainStatus
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func testAccCheckESDomainDestroy(s *terraform.State) error {
|
||||||
|
for _, rs := range s.RootModule().Resources {
|
||||||
|
if rs.Type != "aws_elasticsearch_domain" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
conn := testAccProvider.Meta().(*AWSClient).esconn
|
||||||
|
opts := &elasticsearch.DescribeElasticsearchDomainInput{
|
||||||
|
DomainName: aws.String(rs.Primary.Attributes["domain_name"]),
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := conn.DescribeElasticsearchDomain(opts)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("Error describing ES domains: %q", err.Error())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
const testAccESDomainConfig_basic = `
|
||||||
|
resource "aws_elasticsearch_domain" "example" {
|
||||||
|
domain_name = "tf-test-1"
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
||||||
|
const testAccESDomainConfig_complex = `
|
||||||
|
resource "aws_elasticsearch_domain" "example" {
|
||||||
|
domain_name = "tf-test-2"
|
||||||
|
|
||||||
|
advanced_options {
|
||||||
|
"indices.fielddata.cache.size" = 80
|
||||||
|
}
|
||||||
|
|
||||||
|
ebs_options {
|
||||||
|
ebs_enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
|
cluster_config {
|
||||||
|
instance_count = 2
|
||||||
|
zone_awareness_enabled = true
|
||||||
|
}
|
||||||
|
|
||||||
|
snapshot_options {
|
||||||
|
automated_snapshot_start_hour = 23
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`
|
|
@ -12,6 +12,7 @@ import (
|
||||||
"github.com/aws/aws-sdk-go/service/ec2"
|
"github.com/aws/aws-sdk-go/service/ec2"
|
||||||
"github.com/aws/aws-sdk-go/service/ecs"
|
"github.com/aws/aws-sdk-go/service/ecs"
|
||||||
"github.com/aws/aws-sdk-go/service/elasticache"
|
"github.com/aws/aws-sdk-go/service/elasticache"
|
||||||
|
elasticsearch "github.com/aws/aws-sdk-go/service/elasticsearchservice"
|
||||||
"github.com/aws/aws-sdk-go/service/elb"
|
"github.com/aws/aws-sdk-go/service/elb"
|
||||||
"github.com/aws/aws-sdk-go/service/rds"
|
"github.com/aws/aws-sdk-go/service/rds"
|
||||||
"github.com/aws/aws-sdk-go/service/route53"
|
"github.com/aws/aws-sdk-go/service/route53"
|
||||||
|
@ -479,3 +480,113 @@ func validateRdsId(v interface{}, k string) (ws []string, errors []error) {
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func expandESClusterConfig(m map[string]interface{}) *elasticsearch.ElasticsearchClusterConfig {
|
||||||
|
config := elasticsearch.ElasticsearchClusterConfig{}
|
||||||
|
|
||||||
|
if v, ok := m["dedicated_master_enabled"]; ok {
|
||||||
|
isEnabled := v.(bool)
|
||||||
|
config.DedicatedMasterEnabled = aws.Bool(isEnabled)
|
||||||
|
|
||||||
|
if isEnabled {
|
||||||
|
if v, ok := m["dedicated_master_count"]; ok && v.(int) > 0 {
|
||||||
|
config.DedicatedMasterCount = aws.Int64(int64(v.(int)))
|
||||||
|
}
|
||||||
|
if v, ok := m["dedicated_master_type"]; ok && v.(string) != "" {
|
||||||
|
config.DedicatedMasterType = aws.String(v.(string))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, ok := m["instance_count"]; ok {
|
||||||
|
config.InstanceCount = aws.Int64(int64(v.(int)))
|
||||||
|
}
|
||||||
|
if v, ok := m["instance_type"]; ok {
|
||||||
|
config.InstanceType = aws.String(v.(string))
|
||||||
|
}
|
||||||
|
|
||||||
|
if v, ok := m["zone_awareness_enabled"]; ok {
|
||||||
|
config.ZoneAwarenessEnabled = aws.Bool(v.(bool))
|
||||||
|
}
|
||||||
|
|
||||||
|
return &config
|
||||||
|
}
|
||||||
|
|
||||||
|
func flattenESClusterConfig(c *elasticsearch.ElasticsearchClusterConfig) []map[string]interface{} {
|
||||||
|
m := map[string]interface{}{}
|
||||||
|
|
||||||
|
if c.DedicatedMasterCount != nil {
|
||||||
|
m["dedicated_master_count"] = *c.DedicatedMasterCount
|
||||||
|
}
|
||||||
|
if c.DedicatedMasterEnabled != nil {
|
||||||
|
m["dedicated_master_enabled"] = *c.DedicatedMasterEnabled
|
||||||
|
}
|
||||||
|
if c.DedicatedMasterType != nil {
|
||||||
|
m["dedicated_master_type"] = *c.DedicatedMasterType
|
||||||
|
}
|
||||||
|
if c.InstanceCount != nil {
|
||||||
|
m["instance_count"] = *c.InstanceCount
|
||||||
|
}
|
||||||
|
if c.InstanceType != nil {
|
||||||
|
m["instance_type"] = *c.InstanceType
|
||||||
|
}
|
||||||
|
if c.ZoneAwarenessEnabled != nil {
|
||||||
|
m["zone_awareness_enabled"] = *c.ZoneAwarenessEnabled
|
||||||
|
}
|
||||||
|
|
||||||
|
return []map[string]interface{}{m}
|
||||||
|
}
|
||||||
|
|
||||||
|
func flattenESEBSOptions(o *elasticsearch.EBSOptions) []map[string]interface{} {
|
||||||
|
m := map[string]interface{}{}
|
||||||
|
|
||||||
|
if o.EBSEnabled != nil {
|
||||||
|
m["ebs_enabled"] = *o.EBSEnabled
|
||||||
|
}
|
||||||
|
if o.Iops != nil {
|
||||||
|
m["iops"] = *o.Iops
|
||||||
|
}
|
||||||
|
if o.VolumeSize != nil {
|
||||||
|
m["volume_size"] = *o.VolumeSize
|
||||||
|
}
|
||||||
|
if o.VolumeType != nil {
|
||||||
|
m["volume_type"] = *o.VolumeType
|
||||||
|
}
|
||||||
|
|
||||||
|
return []map[string]interface{}{m}
|
||||||
|
}
|
||||||
|
|
||||||
|
func expandESEBSOptions(m map[string]interface{}) *elasticsearch.EBSOptions {
|
||||||
|
options := elasticsearch.EBSOptions{}
|
||||||
|
|
||||||
|
if v, ok := m["ebs_enabled"]; ok {
|
||||||
|
options.EBSEnabled = aws.Bool(v.(bool))
|
||||||
|
}
|
||||||
|
if v, ok := m["iops"]; ok && v.(int) > 0 {
|
||||||
|
options.Iops = aws.Int64(int64(v.(int)))
|
||||||
|
}
|
||||||
|
if v, ok := m["volume_size"]; ok && v.(int) > 0 {
|
||||||
|
options.VolumeSize = aws.Int64(int64(v.(int)))
|
||||||
|
}
|
||||||
|
if v, ok := m["volume_type"]; ok && v.(string) != "" {
|
||||||
|
options.VolumeType = aws.String(v.(string))
|
||||||
|
}
|
||||||
|
|
||||||
|
return &options
|
||||||
|
}
|
||||||
|
|
||||||
|
func pointersMapToStringList(pointers map[string]*string) map[string]interface{} {
|
||||||
|
list := make(map[string]interface{}, len(pointers))
|
||||||
|
for i, v := range pointers {
|
||||||
|
list[i] = *v
|
||||||
|
}
|
||||||
|
return list
|
||||||
|
}
|
||||||
|
|
||||||
|
func stringMapToPointers(m map[string]interface{}) map[string]*string {
|
||||||
|
list := make(map[string]*string, len(m))
|
||||||
|
for i, v := range m {
|
||||||
|
list[i] = aws.String(v.(string))
|
||||||
|
}
|
||||||
|
return list
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,83 @@
|
||||||
|
---
|
||||||
|
layout: "aws"
|
||||||
|
page_title: "AWS: aws_elasticsearch_domain"
|
||||||
|
sidebar_current: "docs-aws-elasticsearch-domain"
|
||||||
|
description: |-
|
||||||
|
Provides an ElasticSearch Domain.
|
||||||
|
---
|
||||||
|
|
||||||
|
# aws\_elasticsearch\_domain
|
||||||
|
|
||||||
|
|
||||||
|
## Example Usage
|
||||||
|
|
||||||
|
```
|
||||||
|
resource "aws_elasticsearch_domain" "es" {
|
||||||
|
domain_name = "tf-test"
|
||||||
|
advanced_options {
|
||||||
|
"rest.action.multi.allow_explicit_index" = true
|
||||||
|
}
|
||||||
|
|
||||||
|
access_policies = <<CONFIG
|
||||||
|
{
|
||||||
|
"Version": "2012-10-17",
|
||||||
|
"Statement": [
|
||||||
|
{
|
||||||
|
"Action": "es:*",
|
||||||
|
"Principal": "*",
|
||||||
|
"Effect": "Allow",
|
||||||
|
"Condition": {
|
||||||
|
"IpAddress": {"aws:SourceIp": ["66.193.100.22/32"]}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
CONFIG
|
||||||
|
|
||||||
|
snapshot_options {
|
||||||
|
automated_snapshot_start_hour = 23
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Argument Reference
|
||||||
|
|
||||||
|
The following arguments are supported:
|
||||||
|
|
||||||
|
* `domain_name` - (Required) Name of the domain.
|
||||||
|
* `access_policies` - (Optional) IAM policy document specifying the access policies for the domain
|
||||||
|
* `advanced_options` - (Optional) Key-value string pairs to specify advanced configuration options.
|
||||||
|
* `ebs_options` - (Optional) EBS related options, see below.
|
||||||
|
* `cluster_config` - (Optional) Cluster configuration of the domain, see below.
|
||||||
|
* `snapshot_options` - (Optional) Snapshot related options, see below.
|
||||||
|
|
||||||
|
**ebs_options** supports the following attributes:
|
||||||
|
|
||||||
|
* `ebs_enabled` - (Required) Whether EBS volumes are attached to data nodes in the domain
|
||||||
|
* `volume_type` - (Optional) The type of EBS volumes attached to data nodes.
|
||||||
|
* `volume_size` - (Optional) The size of EBS volumes attached to data nodes.
|
||||||
|
* `iops` - (Optional) The baseline input/output (I/O) performance of EBS volumes
|
||||||
|
attached to data nodes. Applicable only for the Provisioned IOPS EBS volume type.
|
||||||
|
|
||||||
|
**cluster_config** supports the following attributes:
|
||||||
|
|
||||||
|
* `instance_type` - (Optional) Instance type of data nodes in the cluster.
|
||||||
|
* `instance_count` - (Optional) Number of instances in the cluster.
|
||||||
|
* `dedicated_master_enabled` - (Optional) Indicates whether dedicated master nodes are enabled for the cluster.
|
||||||
|
* `dedicated_master_type` - (Optional) Instance type of the dedicated master nodes in the cluster.
|
||||||
|
* `dedicated_master_count` - (Optional) Number of dedicated master nodes in the cluster
|
||||||
|
* `zone_awarness_enabled` - (Optional) Indicates whether zone awareness is enabled.
|
||||||
|
|
||||||
|
**snapshot_options** supports the following attribute:
|
||||||
|
|
||||||
|
* `automated_snapshot_start_hour` - (Required) Hour during which the service takes an automated daily
|
||||||
|
snapshot of the indices in the domain.
|
||||||
|
|
||||||
|
|
||||||
|
## Attributes Reference
|
||||||
|
|
||||||
|
The following attributes are exported:
|
||||||
|
|
||||||
|
* `arn` - Amazon Resource Name (ARN) of the domain.
|
||||||
|
* `domain_id` - Unique identifier for the domain.
|
||||||
|
* `endpoint` - Domain-specific endpoint used to submit index, search, and data upload requests.
|
|
@ -172,6 +172,18 @@
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li<%= sidebar_current(/^docs-aws-resource-elasticsearch/) %>>
|
||||||
|
<a href="#">ElasticSearch Resources</a>
|
||||||
|
<ul class="nav nav-visible">
|
||||||
|
|
||||||
|
<li<%= sidebar_current("docs-aws-resource-elasticsearch-domain") %>>
|
||||||
|
<a href="/docs/providers/aws/r/elasticsearch_domain.html">aws_elasticsearch_domain</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
<li<%= sidebar_current(/^docs-aws-resource-iam/) %>>
|
<li<%= sidebar_current(/^docs-aws-resource-iam/) %>>
|
||||||
<a href="#">IAM Resources</a>
|
<a href="#">IAM Resources</a>
|
||||||
<ul class="nav nav-visible">
|
<ul class="nav nav-visible">
|
||||||
|
|
Loading…
Reference in New Issue