2016-02-13 00:33:16 +01:00
|
|
|
package azurerm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
2016-02-18 22:33:01 +01:00
|
|
|
"time"
|
2016-02-13 00:33:16 +01:00
|
|
|
|
2016-02-18 22:33:01 +01:00
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
2016-02-13 00:33:16 +01:00
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
"github.com/jen20/riviera/search"
|
|
|
|
)
|
|
|
|
|
|
|
|
func resourceArmSearchService() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Create: resourceArmSearchServiceCreate,
|
|
|
|
Read: resourceArmSearchServiceRead,
|
|
|
|
Update: resourceArmSearchServiceCreate,
|
|
|
|
Delete: resourceArmSearchServiceDelete,
|
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
2016-11-29 16:54:00 +01:00
|
|
|
"location": locationSchema(),
|
2016-02-13 00:33:16 +01:00
|
|
|
|
|
|
|
"resource_group_name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"sku": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"replica_count": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Optional: true,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"partition_count": &schema.Schema{
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Optional: true,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"tags": tagsSchema(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceArmSearchServiceCreate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
client := meta.(*ArmClient)
|
|
|
|
rivieraClient := client.rivieraClient
|
|
|
|
|
|
|
|
tags := d.Get("tags").(map[string]interface{})
|
|
|
|
expandedTags := expandTags(tags)
|
|
|
|
|
|
|
|
command := &search.CreateOrUpdateSearchService{
|
|
|
|
Name: d.Get("name").(string),
|
|
|
|
Location: d.Get("location").(string),
|
|
|
|
ResourceGroupName: d.Get("resource_group_name").(string),
|
|
|
|
Tags: *expandedTags,
|
|
|
|
Sku: search.Sku{
|
|
|
|
Name: d.Get("sku").(string),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if v, ok := d.GetOk("replica_count"); ok {
|
2016-02-18 23:29:39 +01:00
|
|
|
replica_count := v.(int)
|
|
|
|
command.ReplicaCount = &replica_count
|
2016-02-13 00:33:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if v, ok := d.GetOk("partition_count"); ok {
|
2016-02-18 23:29:39 +01:00
|
|
|
partition_count := v.(int)
|
|
|
|
command.PartitionCount = &partition_count
|
2016-02-13 00:33:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
createRequest := rivieraClient.NewRequest()
|
|
|
|
createRequest.Command = command
|
|
|
|
|
|
|
|
createResponse, err := createRequest.Execute()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating Search Service: %s", err)
|
|
|
|
}
|
|
|
|
if !createResponse.IsSuccessful() {
|
|
|
|
return fmt.Errorf("Error creating Search Service: %s", createResponse.Error)
|
|
|
|
}
|
|
|
|
|
2016-02-18 22:33:01 +01:00
|
|
|
getSearchServiceCommand := &search.GetSearchService{
|
2016-02-13 00:33:16 +01:00
|
|
|
Name: d.Get("name").(string),
|
|
|
|
ResourceGroupName: d.Get("resource_group_name").(string),
|
|
|
|
}
|
|
|
|
|
2016-02-18 22:33:01 +01:00
|
|
|
readRequest := rivieraClient.NewRequest()
|
|
|
|
readRequest.Command = getSearchServiceCommand
|
|
|
|
|
2016-02-13 00:33:16 +01:00
|
|
|
readResponse, err := readRequest.Execute()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error reading Search Service: %s", err)
|
|
|
|
}
|
|
|
|
if !readResponse.IsSuccessful() {
|
|
|
|
return fmt.Errorf("Error reading Search Service: %s", readResponse.Error)
|
|
|
|
}
|
|
|
|
resp := readResponse.Parsed.(*search.GetSearchServiceResponse)
|
2016-02-18 22:33:01 +01:00
|
|
|
|
|
|
|
log.Printf("[DEBUG] Waiting for Search Service (%s) to become available", d.Get("name"))
|
|
|
|
stateConf := &resource.StateChangeConf{
|
2016-08-23 14:38:48 +02:00
|
|
|
Pending: []string{"provisioning"},
|
|
|
|
Target: []string{"succeeded"},
|
|
|
|
Refresh: azureStateRefreshFunc(*resp.ID, client, getSearchServiceCommand),
|
2016-02-18 23:29:39 +01:00
|
|
|
Timeout: 30 * time.Minute,
|
|
|
|
MinTimeout: 15 * time.Second,
|
2016-02-18 22:33:01 +01:00
|
|
|
}
|
|
|
|
if _, err := stateConf.WaitForState(); err != nil {
|
|
|
|
return fmt.Errorf("Error waiting for Search Service (%s) to become available: %s", d.Get("name"), err)
|
|
|
|
}
|
|
|
|
|
2016-02-13 00:33:16 +01:00
|
|
|
d.SetId(*resp.ID)
|
|
|
|
|
|
|
|
return resourceArmSearchServiceRead(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceArmSearchServiceRead(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
client := meta.(*ArmClient)
|
|
|
|
rivieraClient := client.rivieraClient
|
|
|
|
|
|
|
|
readRequest := rivieraClient.NewRequestForURI(d.Id())
|
|
|
|
readRequest.Command = &search.GetSearchService{}
|
|
|
|
|
|
|
|
readResponse, err := readRequest.Execute()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error reading Search Service: %s", err)
|
|
|
|
}
|
|
|
|
if !readResponse.IsSuccessful() {
|
|
|
|
log.Printf("[INFO] Error reading Search Service %q - removing from state", d.Id())
|
|
|
|
d.SetId("")
|
|
|
|
return fmt.Errorf("Error reading Search Service: %s", readResponse.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp := readResponse.Parsed.(*search.GetSearchServiceResponse)
|
|
|
|
d.Set("sku", resp.Sku)
|
2016-02-18 23:29:39 +01:00
|
|
|
if resp.PartitionCount != nil {
|
|
|
|
d.Set("partition_count", resp.PartitionCount)
|
|
|
|
}
|
|
|
|
if resp.ReplicaCount != nil {
|
|
|
|
d.Set("replica_count", resp.ReplicaCount)
|
|
|
|
}
|
2016-02-13 00:33:16 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceArmSearchServiceDelete(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
client := meta.(*ArmClient)
|
|
|
|
rivieraClient := client.rivieraClient
|
|
|
|
|
|
|
|
deleteRequest := rivieraClient.NewRequestForURI(d.Id())
|
|
|
|
deleteRequest.Command = &search.DeleteSearchService{}
|
|
|
|
|
|
|
|
deleteResponse, err := deleteRequest.Execute()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error deleting Search Service: %s", err)
|
|
|
|
}
|
|
|
|
if !deleteResponse.IsSuccessful() {
|
|
|
|
return fmt.Errorf("Error deleting Search Service: %s", deleteResponse.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|