You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.0 KiB
111 lines
3.0 KiB
/*
|
|
Copyright (c) 2019-2020 Digital Energy Cloud Solutions LLC. All Rights Reserved.
|
|
Author: Sergey Shubin, <sergey.shubin@digitalenergy.online>, <svs1370@gmail.com>
|
|
|
|
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.
|
|
*/
|
|
|
|
/*
|
|
This file is part of Terraform (by Hashicorp) provider for Digital Energy Cloud Orchestration
|
|
Technology platfom.
|
|
|
|
Visit https://github.com/rudecs/terraform-provider-decort for full source code package and updates.
|
|
*/
|
|
|
|
package decort
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"log"
|
|
"net/url"
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
"github.com/hashicorp/terraform/helper/validation"
|
|
)
|
|
|
|
|
|
func dataSourceImageRead(d *schema.ResourceData, m interface{}) error {
|
|
name := d.Get("name").(string)
|
|
rgid, rgid_set := d.GetOk("rgid")
|
|
tenant_id, tenant_set := d.GetOk("tenant_id")
|
|
|
|
controller := m.(*ControllerCfg)
|
|
url_values := &url.Values{}
|
|
if tenant_set {
|
|
url_values.Add("accountId", fmt.Sprintf("%d",tenant_id.(int)))
|
|
}
|
|
if rgid_set {
|
|
url_values.Add("cloudspaceId", fmt.Sprintf("%d",rgid.(int)))
|
|
}
|
|
body_string, err := controller.decortAPICall("POST", ImagesListAPI, url_values)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Printf("dataSourceImageRead: ready to decode response body")
|
|
model := ImagesListResp{}
|
|
err = json.Unmarshal([]byte(body_string), &model)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Printf("%#v", model)
|
|
log.Printf("dataSourceImageRead: traversing decoded JSON of length %d", len(model))
|
|
for index, item := range model {
|
|
// need to match VM by name
|
|
if item.Name == name {
|
|
log.Printf("dataSourceImageRead: index %d, matched name %q", index, item.Name)
|
|
d.SetId(fmt.Sprintf("%d", model[index].ID))
|
|
// d.Set("field_name", value)
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return fmt.Errorf("Cannot find OS Image name %q", name)
|
|
}
|
|
|
|
func dataSourceImage() *schema.Resource {
|
|
return &schema.Resource {
|
|
SchemaVersion: 1,
|
|
|
|
Read: dataSourceImageRead,
|
|
|
|
Timeouts: &schema.ResourceTimeout {
|
|
Read: &Timeout30s,
|
|
Default: &Timeout60s,
|
|
},
|
|
|
|
Schema: map[string]*schema.Schema {
|
|
"name": {
|
|
Type: schema.TypeString,
|
|
Required: true,
|
|
Description: "Name of the OS image to locate. This parameter is case sensitive.",
|
|
},
|
|
|
|
"tenant_id": {
|
|
Type: schema.TypeInt,
|
|
Optional: true,
|
|
ValidateFunc: validation.IntAtLeast(1),
|
|
Description: "ID of the tenant to limit image search to.",
|
|
},
|
|
|
|
"rgid": {
|
|
Type: schema.TypeInt,
|
|
Optional: true,
|
|
ValidateFunc: validation.IntAtLeast(1),
|
|
Description: "ID of the resource group to limit image search to.",
|
|
},
|
|
},
|
|
}
|
|
} |