terraform/builtin/providers/spotinst/resource_spotinst_subscript...

146 lines
4.2 KiB
Go
Raw Normal View History

New Provider: Spotinst (#5001) * providers/spotinst: Add support for Spotinst resources * providers/spotinst: Fix merge conflict - layouts/docs.erb * docs/providers/spotinst: Fix the resource description field * providers/spotinst: Fix the acceptance tests * providers/spotinst: Mark the device_index as a required field * providers/spotinst: Change the associate_public_ip_address field to TypeBool * docs/providers/spotinst: Update the description of the adjustment field * providers/spotinst: Rename IamRole to IamInstanceProfile to make it more compatible with the AWS provider * docs/providers/spotinst: Rename iam_role to iam_instance_profile * providers/spotinst: Deprecate the iam_role attribute * providers/spotinst: Fix a misspelled var (IamRole) * providers/spotinst: Fix possible null pointer exception related to "iam_instance_profile" * docs/providers/spotinst: Add "load_balancer_names" missing description * providers/spotinst: New resource "spotinst_subscription" added * providers/spotinst: Eliminate a possible null pointer exception in "spotinst_aws_group" * providers/spotinst: Eliminate a possible null pointer exception in "spotinst_subscription" * providers/spotinst: Mark spotinst_subscription as deleted in destroy * providers/spotinst: Add support for custom event format in spotinst_subscription * providers/spotinst: Disable the destroy step of spotinst_subscription * providers/spotinst: Add support for update subscriptions * providers/spotinst: Merge fixed conflict - layouts/docs.erb * providers/spotinst: Vendor dependencies * providers/spotinst: Return a detailed error message * provider/spotinst: Update the plugin list * providers/spotinst: Vendor dependencies using govendor * providers/spotinst: New resource "spotinst_healthcheck" added * providers/spotinst: Update the Spotinst SDK * providers/spotinst: Comment out unnecessary log.Printf * providers/spotinst: Fix the acceptance tests * providers/spotinst: Gofmt fixes * providers/spotinst: Use multiple functions to expand each block * providers/spotinst: Allow ondemand_count to be zero * providers/spotinst: Change security_group_ids from TypeSet to TypeList * providers/spotinst: Remove unnecessary `ForceNew` fields * providers/spotinst: Update the Spotinst SDK * providers/spotinst: Add support for capacity unit * providers/spotinst: Add support for EBS volume pool * providers/spotinst: Delete health check * providers/spotinst: Allow to set multiple availability zones * providers/spotinst: Gofmt * providers/spotinst: Omit empty strings from the load_balancer_names field * providers/spotinst: Update the Spotinst SDK to v1.1.9 * providers/spotinst: Add support for new strategy parameters * providers/spotinst: Update the Spotinst SDK to v1.2.0 * providers/spotinst: Add support for Kubernetes integration * providers/spotinst: Fix merge conflict - vendor/vendor.json * providers/spotinst: Update the Spotinst SDK to v1.2.1 * providers/spotinst: Add support for Application Load Balancers * providers/spotinst: Do not allow to set ondemand_count to 0 * providers/spotinst: Update the Spotinst SDK to v1.2.2 * providers/spotinst: Add support for scaling policy operators * providers/spotinst: Add dimensions to spotinst_aws_group tests * providers/spotinst: Allow both ARN and name for IAM instance profiles * providers/spotinst: Allow ondemand_count=0 * providers/spotinst: Split out the set funcs into flatten style funcs * providers/spotinst: Update the Spotinst SDK to v1.2.3 * providers/spotinst: Add support for EBS optimized flag * providers/spotinst: Update the Spotinst SDK to v2.0.0 * providers/spotinst: Use stringutil.Stringify for debugging * providers/spotinst: Update the Spotinst SDK to v2.0.1 * providers/spotinst: Key pair is now optional * providers/spotinst: Make sure we do not nullify signals on strategy update * providers/spotinst: Hash both Strategy and EBS Block Device * providers/spotinst: Hash AWS load balancer * providers/spotinst: Update the Spotinst SDK to v2.0.2 * providers/spotinst: Verify namespace exists before appending policy * providers/spotinst: Image ID will be in a separate block from now on, so as to allow ignoring changes only on the image ID. This change is backwards compatible. * providers/spotinst: user data decoded when returned from spotinst api, so that TF compares the two states properly, and does not update without cause.
2017-02-22 21:57:16 +01:00
package spotinst
import (
"fmt"
"log"
"strings"
"github.com/hashicorp/terraform/helper/schema"
"github.com/spotinst/spotinst-sdk-go/spotinst"
"github.com/spotinst/spotinst-sdk-go/spotinst/util/stringutil"
)
func resourceSpotinstSubscription() *schema.Resource {
return &schema.Resource{
Create: resourceSpotinstSubscriptionCreate,
Update: resourceSpotinstSubscriptionUpdate,
Read: resourceSpotinstSubscriptionRead,
Delete: resourceSpotinstSubscriptionDelete,
Schema: map[string]*schema.Schema{
"resource_id": &schema.Schema{
Type: schema.TypeString,
Required: true,
},
"event_type": &schema.Schema{
Type: schema.TypeString,
Required: true,
StateFunc: func(v interface{}) string {
value := v.(string)
return strings.ToUpper(value)
},
},
"protocol": &schema.Schema{
Type: schema.TypeString,
Required: true,
},
"endpoint": &schema.Schema{
Type: schema.TypeString,
Required: true,
},
"format": &schema.Schema{
Type: schema.TypeMap,
Optional: true,
},
},
}
}
func resourceSpotinstSubscriptionCreate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*spotinst.Client)
newSubscription, err := buildSubscriptionOpts(d, meta)
if err != nil {
return err
}
log.Printf("[DEBUG] Subscription create configuration: %s\n", stringutil.Stringify(newSubscription))
input := &spotinst.CreateSubscriptionInput{Subscription: newSubscription}
resp, err := client.SubscriptionService.Create(input)
if err != nil {
return fmt.Errorf("Error creating subscription: %s", err)
}
d.SetId(spotinst.StringValue(resp.Subscription.ID))
log.Printf("[INFO] Subscription created successfully: %s\n", d.Id())
return resourceSpotinstSubscriptionRead(d, meta)
}
func resourceSpotinstSubscriptionRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*spotinst.Client)
input := &spotinst.ReadSubscriptionInput{ID: spotinst.String(d.Id())}
resp, err := client.SubscriptionService.Read(input)
if err != nil {
return fmt.Errorf("Error retrieving subscription: %s", err)
}
if s := resp.Subscription; s != nil {
d.Set("resource_id", s.ResourceID)
d.Set("event_type", s.EventType)
d.Set("protocol", s.Protocol)
d.Set("endpoint", s.Endpoint)
d.Set("format", s.Format)
} else {
d.SetId("")
}
return nil
}
func resourceSpotinstSubscriptionUpdate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*spotinst.Client)
subscription := &spotinst.Subscription{ID: spotinst.String(d.Id())}
update := false
if d.HasChange("resource_id") {
subscription.ResourceID = spotinst.String(d.Get("resource_id").(string))
update = true
}
if d.HasChange("event_type") {
subscription.EventType = spotinst.String(d.Get("event_type").(string))
update = true
}
if d.HasChange("protocol") {
subscription.Protocol = spotinst.String(d.Get("protocol").(string))
update = true
}
if d.HasChange("endpoint") {
subscription.Endpoint = spotinst.String(d.Get("endpoint").(string))
update = true
}
if d.HasChange("format") {
subscription.Format = d.Get("format").(map[string]interface{})
update = true
}
if update {
log.Printf("[DEBUG] Subscription update configuration: %s\n", stringutil.Stringify(subscription))
input := &spotinst.UpdateSubscriptionInput{Subscription: subscription}
if _, err := client.SubscriptionService.Update(input); err != nil {
return fmt.Errorf("Error updating subscription %s: %s", d.Id(), err)
}
}
return resourceSpotinstSubscriptionRead(d, meta)
}
func resourceSpotinstSubscriptionDelete(d *schema.ResourceData, meta interface{}) error {
d.SetId("")
return nil
}
// buildSubscriptionOpts builds the Spotinst Subscription options.
func buildSubscriptionOpts(d *schema.ResourceData, meta interface{}) (*spotinst.Subscription, error) {
subscription := &spotinst.Subscription{
ResourceID: spotinst.String(d.Get("resource_id").(string)),
EventType: spotinst.String(strings.ToUpper(d.Get("event_type").(string))),
Protocol: spotinst.String(d.Get("protocol").(string)),
Endpoint: spotinst.String(d.Get("endpoint").(string)),
Format: d.Get("format").(map[string]interface{}),
}
return subscription, nil
}