2015-11-01 16:39:08 +01:00
|
|
|
package google
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
"google.golang.org/api/compute/v1"
|
|
|
|
"google.golang.org/api/googleapi"
|
|
|
|
)
|
|
|
|
|
|
|
|
func resourceComputeTargetHttpProxy() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Create: resourceComputeTargetHttpProxyCreate,
|
|
|
|
Read: resourceComputeTargetHttpProxyRead,
|
|
|
|
Delete: resourceComputeTargetHttpProxyDelete,
|
|
|
|
Update: resourceComputeTargetHttpProxyUpdate,
|
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
2016-04-10 23:34:15 +02:00
|
|
|
"url_map": &schema.Schema{
|
2015-11-01 16:39:08 +01:00
|
|
|
Type: schema.TypeString,
|
2016-04-10 23:34:15 +02:00
|
|
|
Required: true,
|
2015-11-01 16:39:08 +01:00
|
|
|
},
|
|
|
|
|
2016-04-10 23:34:15 +02:00
|
|
|
"description": &schema.Schema{
|
2015-11-01 16:39:08 +01:00
|
|
|
Type: schema.TypeString,
|
2016-04-10 23:34:15 +02:00
|
|
|
Optional: true,
|
|
|
|
ForceNew: true,
|
2015-11-01 16:39:08 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
"id": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
|
2016-04-10 18:59:57 +02:00
|
|
|
"project": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
2016-04-10 23:34:15 +02:00
|
|
|
|
|
|
|
"self_link": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
2015-11-01 16:39:08 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceComputeTargetHttpProxyCreate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
config := meta.(*Config)
|
|
|
|
|
2016-04-10 18:59:57 +02:00
|
|
|
project, err := getProject(d, config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-01 16:39:08 +01:00
|
|
|
proxy := &compute.TargetHttpProxy{
|
|
|
|
Name: d.Get("name").(string),
|
|
|
|
UrlMap: d.Get("url_map").(string),
|
|
|
|
}
|
|
|
|
|
|
|
|
if v, ok := d.GetOk("description"); ok {
|
|
|
|
proxy.Description = v.(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] TargetHttpProxy insert request: %#v", proxy)
|
|
|
|
op, err := config.clientCompute.TargetHttpProxies.Insert(
|
2016-04-10 18:59:57 +02:00
|
|
|
project, proxy).Do()
|
2015-11-01 16:39:08 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating TargetHttpProxy: %s", err)
|
|
|
|
}
|
|
|
|
|
2016-06-06 19:35:13 +02:00
|
|
|
err = computeOperationWaitGlobal(config, op, project, "Creating Target Http Proxy")
|
2015-11-01 16:39:08 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
d.SetId(proxy.Name)
|
|
|
|
|
|
|
|
return resourceComputeTargetHttpProxyRead(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceComputeTargetHttpProxyUpdate(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
config := meta.(*Config)
|
|
|
|
|
2016-04-10 18:59:57 +02:00
|
|
|
project, err := getProject(d, config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-01 16:39:08 +01:00
|
|
|
d.Partial(true)
|
|
|
|
|
|
|
|
if d.HasChange("url_map") {
|
|
|
|
url_map := d.Get("url_map").(string)
|
|
|
|
url_map_ref := &compute.UrlMapReference{UrlMap: url_map}
|
|
|
|
op, err := config.clientCompute.TargetHttpProxies.SetUrlMap(
|
2016-04-10 18:59:57 +02:00
|
|
|
project, d.Id(), url_map_ref).Do()
|
2015-11-01 16:39:08 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error updating target: %s", err)
|
|
|
|
}
|
|
|
|
|
2016-06-06 19:35:13 +02:00
|
|
|
err = computeOperationWaitGlobal(config, op, project, "Updating Target Http Proxy")
|
2015-11-01 16:39:08 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
d.SetPartial("url_map")
|
|
|
|
}
|
|
|
|
|
|
|
|
d.Partial(false)
|
|
|
|
|
|
|
|
return resourceComputeTargetHttpProxyRead(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceComputeTargetHttpProxyRead(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
config := meta.(*Config)
|
|
|
|
|
2016-04-10 18:59:57 +02:00
|
|
|
project, err := getProject(d, config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-01 16:39:08 +01:00
|
|
|
proxy, err := config.clientCompute.TargetHttpProxies.Get(
|
2016-04-10 18:59:57 +02:00
|
|
|
project, d.Id()).Do()
|
2015-11-01 16:39:08 +01:00
|
|
|
if err != nil {
|
|
|
|
if gerr, ok := err.(*googleapi.Error); ok && gerr.Code == 404 {
|
2015-11-13 21:36:03 +01:00
|
|
|
log.Printf("[WARN] Removing Target HTTP Proxy %q because it's gone", d.Get("name").(string))
|
2015-11-01 16:39:08 +01:00
|
|
|
// The resource doesn't exist anymore
|
|
|
|
d.SetId("")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("Error reading TargetHttpProxy: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
d.Set("self_link", proxy.SelfLink)
|
|
|
|
d.Set("id", strconv.FormatUint(proxy.Id, 10))
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceComputeTargetHttpProxyDelete(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
config := meta.(*Config)
|
|
|
|
|
2016-04-10 18:59:57 +02:00
|
|
|
project, err := getProject(d, config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-01 16:39:08 +01:00
|
|
|
// Delete the TargetHttpProxy
|
|
|
|
log.Printf("[DEBUG] TargetHttpProxy delete request")
|
|
|
|
op, err := config.clientCompute.TargetHttpProxies.Delete(
|
2016-04-10 18:59:57 +02:00
|
|
|
project, d.Id()).Do()
|
2015-11-01 16:39:08 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error deleting TargetHttpProxy: %s", err)
|
|
|
|
}
|
|
|
|
|
2016-06-06 19:35:13 +02:00
|
|
|
err = computeOperationWaitGlobal(config, op, project, "Deleting Target Http Proxy")
|
2015-11-01 16:39:08 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
d.SetId("")
|
|
|
|
return nil
|
|
|
|
}
|