terraform/vendor/github.com/terraform-providers/terraform-provider-openstack/openstack/data_source_openstack_block...

125 lines
3.0 KiB
Go

package openstack
import (
"fmt"
"log"
"github.com/gophercloud/gophercloud/openstack/blockstorage/v3/snapshots"
"github.com/hashicorp/terraform/helper/schema"
)
func dataSourceBlockStorageSnapshotV3() *schema.Resource {
return &schema.Resource{
Read: dataSourceBlockStorageSnapshotV3Read,
Schema: map[string]*schema.Schema{
"region": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"name": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"status": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"volume_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"most_recent": {
Type: schema.TypeBool,
Optional: true,
},
// Computed values
"description": {
Type: schema.TypeString,
Computed: true,
},
"size": {
Type: schema.TypeInt,
Computed: true,
},
"metadata": {
Type: schema.TypeMap,
Computed: true,
},
},
}
}
func dataSourceBlockStorageSnapshotV3Read(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
client, err := config.blockStorageV3Client(GetRegion(d, config))
if err != nil {
return fmt.Errorf("Error creating OpenStack block storage client: %s", err)
}
listOpts := snapshots.ListOpts{
Name: d.Get("name").(string),
Status: d.Get("status").(string),
VolumeID: d.Get("volume_id").(string),
}
allPages, err := snapshots.List(client, listOpts).AllPages()
if err != nil {
return fmt.Errorf("Unable to query openstack_blockstorage_snapshots_v3: %s", err)
}
allSnapshots, err := snapshots.ExtractSnapshots(allPages)
if err != nil {
return fmt.Errorf("Unable to retrieve openstack_blockstorage_snapshots_v3: %s", err)
}
if len(allSnapshots) < 1 {
return fmt.Errorf("Your openstack_blockstorage_snapshot_v3 query returned no results. " +
"Please change your search criteria and try again.")
}
var snapshot snapshots.Snapshot
if len(allSnapshots) > 1 {
recent := d.Get("most_recent").(bool)
if recent {
snapshot = dataSourceBlockStorageV3MostRecentSnapshot(allSnapshots)
} else {
log.Printf("[DEBUG] Multiple openstack_blockstorage_snapshot_v3 results found: %#v", allSnapshots)
return fmt.Errorf("Your query returned more than one result. Please try a more " +
"specific search criteria, or set `most_recent` attribute to true.")
}
} else {
snapshot = allSnapshots[0]
}
return dataSourceBlockStorageSnapshotV3Attributes(d, snapshot)
}
func dataSourceBlockStorageSnapshotV3Attributes(d *schema.ResourceData, snapshot snapshots.Snapshot) error {
d.SetId(snapshot.ID)
d.Set("name", snapshot.Name)
d.Set("description", snapshot.Description)
d.Set("size", snapshot.Size)
d.Set("status", snapshot.Status)
d.Set("volume_id", snapshot.VolumeID)
if err := d.Set("metadata", snapshot.Metadata); err != nil {
log.Printf("[DEBUG] Unable to set metadata for snapshot %s: %s", snapshot.ID, err)
}
return nil
}