providers/gcp/instances.go (57 lines of code) (raw):
// Copyright 2018 The Terraformer Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package gcp
import (
"context"
"log"
"strings"
"github.com/GoogleCloudPlatform/terraformer/terraformutils"
"google.golang.org/api/compute/v1"
)
var instancesAllowEmptyValues = []string{"labels."}
var instancesAdditionalFields = map[string]interface{}{}
type InstancesGenerator struct {
GCPService
}
// Run on instancesList and create for each TerraformResource
func (g InstancesGenerator) createResources(ctx context.Context, instancesList *compute.InstancesListCall, zone string) []terraformutils.Resource {
resources := []terraformutils.Resource{}
if err := instancesList.Pages(ctx, func(page *compute.InstanceList) error {
for _, obj := range page.Items {
if strings.HasPrefix(obj.Name, "gke-") {
continue
}
resource := terraformutils.NewResource(
obj.Name,
obj.Name,
"google_compute_instance",
g.ProviderName,
map[string]string{
"name": obj.Name,
"project": g.GetArgs()["project"].(string),
"zone": zone,
"disk.#": "0",
},
instancesAllowEmptyValues,
instancesAdditionalFields,
)
resource.IgnoreKeys = append(resource.IgnoreKeys, "^boot_disk.[0-9].initialize_params\\.(.*)")
resources = append(resources, resource)
}
return nil
}); err != nil {
log.Println(err)
}
return resources
}
// Generate TerraformResources from GCP API,
// from each instances create 1 TerraformResource
// Need instances name as ID for terraform resource
func (g *InstancesGenerator) InitResources() error {
ctx := context.Background()
computeService, err := compute.NewService(ctx)
if err != nil {
return err
}
for _, zoneLink := range g.GetArgs()["region"].(compute.Region).Zones {
t := strings.Split(zoneLink, "/")
zone := t[len(t)-1]
instancesList := computeService.Instances.List(g.GetArgs()["project"].(string), zone)
g.Resources = append(g.Resources, g.createResources(ctx, instancesList, zone)...)
}
return nil
}