2014-08-25 20:48:20 +02:00
|
|
|
package google
|
|
|
|
|
2014-08-25 23:57:17 +02:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.google.com/p/google-api-go-client/compute/v1"
|
2014-08-26 07:49:14 +02:00
|
|
|
"code.google.com/p/google-api-go-client/googleapi"
|
2014-08-26 00:10:30 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/hashcode"
|
2014-08-25 20:48:20 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
)
|
|
|
|
|
|
|
|
func resourceComputeInstance() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Create: resourceComputeInstanceCreate,
|
2014-08-25 23:57:17 +02:00
|
|
|
Read: resourceComputeInstanceRead,
|
|
|
|
Delete: resourceComputeInstanceDelete,
|
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"description": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"machine_type": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"zone": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"disk": &schema.Schema{
|
|
|
|
Type: schema.TypeList,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
Elem: &schema.Resource{
|
|
|
|
Schema: map[string]*schema.Schema{
|
2014-08-26 06:35:23 +02:00
|
|
|
// TODO(mitchellh): one of image or disk is required
|
|
|
|
|
|
|
|
"disk": &schema.Schema{
|
2014-08-25 23:57:17 +02:00
|
|
|
Type: schema.TypeString,
|
2014-08-26 06:35:23 +02:00
|
|
|
Optional: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"image": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
2014-08-25 23:57:17 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2014-08-25 20:48:20 +02:00
|
|
|
|
2014-08-25 23:57:17 +02:00
|
|
|
"network": &schema.Schema{
|
|
|
|
Type: schema.TypeList,
|
|
|
|
Required: true,
|
|
|
|
ForceNew: true,
|
|
|
|
Elem: &schema.Resource{
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"source": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
2014-08-26 00:47:21 +02:00
|
|
|
|
|
|
|
"address": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
},
|
2014-08-26 01:23:28 +02:00
|
|
|
|
|
|
|
"name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"internal_address": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
2014-08-25 23:57:17 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2014-08-26 00:10:30 +02:00
|
|
|
|
2014-08-26 00:25:45 +02:00
|
|
|
"metadata": &schema.Schema{
|
|
|
|
Type: schema.TypeList,
|
|
|
|
Optional: true,
|
|
|
|
Elem: &schema.Schema{
|
|
|
|
Type: schema.TypeMap,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2014-08-26 00:10:30 +02:00
|
|
|
"tags": &schema.Schema{
|
|
|
|
Type: schema.TypeSet,
|
|
|
|
Optional: true,
|
|
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
|
|
Set: func(v interface{}) int {
|
|
|
|
return hashcode.String(v.(string))
|
|
|
|
},
|
|
|
|
},
|
2014-08-25 23:57:17 +02:00
|
|
|
},
|
2014-08-25 20:48:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceComputeInstanceCreate(d *schema.ResourceData, meta interface{}) error {
|
2014-08-25 23:57:17 +02:00
|
|
|
config := meta.(*Config)
|
|
|
|
|
|
|
|
// Get the zone
|
|
|
|
log.Printf("[DEBUG] Loading zone: %s", d.Get("zone").(string))
|
|
|
|
zone, err := config.clientCompute.Zones.Get(
|
|
|
|
config.Project, d.Get("zone").(string)).Do()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error loading zone '%s': %s", d.Get("zone").(string), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the machine type
|
|
|
|
log.Printf("[DEBUG] Loading machine type: %s", d.Get("machine_type").(string))
|
|
|
|
machineType, err := config.clientCompute.MachineTypes.Get(
|
|
|
|
config.Project, zone.Name, d.Get("machine_type").(string)).Do()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error loading machine type: %s",
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build up the list of disks
|
|
|
|
disksCount := d.Get("disk.#").(int)
|
|
|
|
disks := make([]*compute.AttachedDisk, 0, disksCount)
|
|
|
|
for i := 0; i < disksCount; i++ {
|
2014-08-26 06:35:23 +02:00
|
|
|
prefix := fmt.Sprintf("disk.%d", i)
|
|
|
|
|
|
|
|
var sourceLink string
|
|
|
|
|
|
|
|
// Load up the disk for this disk if specified
|
|
|
|
if v, ok := d.GetOk(prefix + ".disk"); ok {
|
|
|
|
diskName := v.(string)
|
|
|
|
disk, err := config.clientCompute.Disks.Get(
|
|
|
|
config.Project, zone.Name, diskName).Do()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error loading disk '%s': %s",
|
|
|
|
diskName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceLink = disk.SelfLink
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load up the image for this disk if specified
|
|
|
|
if v, ok := d.GetOk(prefix + ".image"); ok {
|
|
|
|
imageName := v.(string)
|
|
|
|
image, err := readImage(config, imageName)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error loading image '%s': %s",
|
|
|
|
imageName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceLink = image.SelfLink
|
2014-08-25 23:57:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Build the disk
|
|
|
|
var disk compute.AttachedDisk
|
|
|
|
disk.Type = "PERSISTENT"
|
|
|
|
disk.Mode = "READ_WRITE"
|
|
|
|
disk.Boot = i == 0
|
|
|
|
disk.AutoDelete = true
|
|
|
|
disk.InitializeParams = &compute.AttachedDiskInitializeParams{
|
2014-08-26 06:35:23 +02:00
|
|
|
SourceImage: sourceLink,
|
2014-08-25 23:57:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
disks = append(disks, &disk)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build up the list of networks
|
|
|
|
networksCount := d.Get("network.#").(int)
|
|
|
|
networks := make([]*compute.NetworkInterface, 0, networksCount)
|
|
|
|
for i := 0; i < networksCount; i++ {
|
2014-08-26 00:47:21 +02:00
|
|
|
prefix := fmt.Sprintf("network.%d", i)
|
2014-08-25 23:57:17 +02:00
|
|
|
// Load up the name of this network
|
2014-08-26 00:47:21 +02:00
|
|
|
networkName := d.Get(prefix + ".source").(string)
|
2014-08-25 23:57:17 +02:00
|
|
|
network, err := config.clientCompute.Networks.Get(
|
|
|
|
config.Project, networkName).Do()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Error loading network '%s': %s",
|
|
|
|
networkName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the disk
|
|
|
|
var iface compute.NetworkInterface
|
|
|
|
iface.AccessConfigs = []*compute.AccessConfig{
|
|
|
|
&compute.AccessConfig{
|
2014-08-26 00:47:21 +02:00
|
|
|
Type: "ONE_TO_ONE_NAT",
|
|
|
|
NatIP: d.Get(prefix + ".address").(string),
|
2014-08-25 23:57:17 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
iface.Network = network.SelfLink
|
|
|
|
|
|
|
|
networks = append(networks, &iface)
|
|
|
|
}
|
|
|
|
|
2014-08-26 00:25:45 +02:00
|
|
|
// Calculate the metadata
|
|
|
|
var metadata *compute.Metadata
|
|
|
|
if v := d.Get("metadata").([]interface{}); len(v) > 0 {
|
|
|
|
m := new(compute.Metadata)
|
|
|
|
m.Items = make([]*compute.MetadataItems, 0, len(v))
|
|
|
|
for _, v := range v {
|
|
|
|
for k, v := range v.(map[string]interface{}) {
|
|
|
|
m.Items = append(m.Items, &compute.MetadataItems{
|
|
|
|
Key: k,
|
|
|
|
Value: v.(string),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
metadata = m
|
|
|
|
}
|
|
|
|
|
2014-08-26 00:10:30 +02:00
|
|
|
// Calculate the tags
|
|
|
|
var tags *compute.Tags
|
|
|
|
if v := d.Get("tags"); v != nil {
|
|
|
|
vs := v.(*schema.Set).List()
|
|
|
|
tags = new(compute.Tags)
|
|
|
|
tags.Items = make([]string, len(vs))
|
|
|
|
for i, v := range v.(*schema.Set).List() {
|
|
|
|
tags.Items[i] = v.(string)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-25 23:57:17 +02:00
|
|
|
// Create the instance information
|
|
|
|
instance := compute.Instance{
|
2014-08-26 00:25:45 +02:00
|
|
|
Description: d.Get("description").(string),
|
|
|
|
Disks: disks,
|
|
|
|
MachineType: machineType.SelfLink,
|
|
|
|
Metadata: metadata,
|
2014-08-25 23:57:17 +02:00
|
|
|
Name: d.Get("name").(string),
|
|
|
|
NetworkInterfaces: networks,
|
2014-08-26 00:10:30 +02:00
|
|
|
Tags: tags,
|
2014-08-25 23:57:17 +02:00
|
|
|
/*
|
|
|
|
ServiceAccounts: []*compute.ServiceAccount{
|
|
|
|
&compute.ServiceAccount{
|
|
|
|
Email: "default",
|
|
|
|
Scopes: []string{
|
|
|
|
"https://www.googleapis.com/auth/userinfo.email",
|
|
|
|
"https://www.googleapis.com/auth/compute",
|
|
|
|
"https://www.googleapis.com/auth/devstorage.full_control",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[INFO] Requesting instance creation")
|
|
|
|
op, err := config.clientCompute.Instances.Insert(
|
|
|
|
config.Project, zone.Name, &instance).Do()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error creating instance: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the ID now
|
|
|
|
d.SetId(instance.Name)
|
|
|
|
|
|
|
|
// Wait for the operation to complete
|
|
|
|
w := &OperationWaiter{
|
|
|
|
Service: config.clientCompute,
|
|
|
|
Op: op,
|
|
|
|
Project: config.Project,
|
|
|
|
Zone: zone.Name,
|
|
|
|
Type: OperationWaitZone,
|
|
|
|
}
|
|
|
|
state := w.Conf()
|
|
|
|
state.Delay = 10 * time.Second
|
|
|
|
state.Timeout = 10 * time.Minute
|
|
|
|
state.MinTimeout = 2 * time.Second
|
2014-08-26 07:44:27 +02:00
|
|
|
opRaw, err := state.WaitForState()
|
|
|
|
if err != nil {
|
2014-08-25 23:57:17 +02:00
|
|
|
return fmt.Errorf("Error waiting for instance to create: %s", err)
|
|
|
|
}
|
2014-08-26 07:44:27 +02:00
|
|
|
op = opRaw.(*compute.Operation)
|
|
|
|
if op.Error != nil {
|
|
|
|
// The resource didn't actually create
|
|
|
|
d.SetId("")
|
|
|
|
|
|
|
|
// Return the error
|
|
|
|
return OperationError(*op.Error)
|
|
|
|
}
|
2014-08-25 23:57:17 +02:00
|
|
|
|
|
|
|
return resourceComputeInstanceRead(d, meta)
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceComputeInstanceRead(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
config := meta.(*Config)
|
|
|
|
|
2014-08-26 01:23:28 +02:00
|
|
|
instance, err := config.clientCompute.Instances.Get(
|
2014-08-25 23:57:17 +02:00
|
|
|
config.Project, d.Get("zone").(string), d.Id()).Do()
|
|
|
|
if err != nil {
|
2014-08-26 07:49:14 +02:00
|
|
|
if gerr, ok := err.(*googleapi.Error); ok && gerr.Code == 404 {
|
|
|
|
// The resource doesn't exist anymore
|
|
|
|
d.SetId("")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 23:57:17 +02:00
|
|
|
return fmt.Errorf("Error reading instance: %s", err)
|
|
|
|
}
|
|
|
|
|
2014-08-26 01:23:28 +02:00
|
|
|
// Set the networks
|
|
|
|
for i, iface := range instance.NetworkInterfaces {
|
|
|
|
prefix := fmt.Sprintf("network.%d", i)
|
|
|
|
d.Set(prefix+".name", iface.Name)
|
|
|
|
d.Set(prefix+".internal_address", iface.NetworkIP)
|
|
|
|
}
|
|
|
|
|
2014-08-25 23:57:17 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resourceComputeInstanceDelete(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
config := meta.(*Config)
|
|
|
|
|
|
|
|
op, err := config.clientCompute.Instances.Delete(
|
|
|
|
config.Project, d.Get("zone").(string), d.Id()).Do()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error deleting instance: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for the operation to complete
|
|
|
|
w := &OperationWaiter{
|
|
|
|
Service: config.clientCompute,
|
|
|
|
Op: op,
|
|
|
|
Project: config.Project,
|
|
|
|
Zone: d.Get("zone").(string),
|
|
|
|
Type: OperationWaitZone,
|
|
|
|
}
|
|
|
|
state := w.Conf()
|
|
|
|
state.Delay = 5 * time.Second
|
|
|
|
state.Timeout = 5 * time.Minute
|
|
|
|
state.MinTimeout = 2 * time.Second
|
2014-08-26 07:44:27 +02:00
|
|
|
opRaw, err := state.WaitForState()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error waiting for instance to delete: %s", err)
|
|
|
|
}
|
|
|
|
op = opRaw.(*compute.Operation)
|
|
|
|
if op.Error != nil {
|
|
|
|
// Return the error
|
|
|
|
return OperationError(*op.Error)
|
2014-08-25 23:57:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
d.SetId("")
|
2014-08-25 20:48:20 +02:00
|
|
|
return nil
|
|
|
|
}
|