-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_source_openstack_blockstorage_volume_v2.go
More file actions
116 lines (94 loc) · 2.72 KB
/
Copy pathdata_source_openstack_blockstorage_volume_v2.go
File metadata and controls
116 lines (94 loc) · 2.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package openstack
import (
"context"
"log"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/gophercloud/gophercloud/openstack/blockstorage/v2/volumes"
)
func dataSourceBlockStorageVolumeV2() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceBlockStorageVolumeV2Read,
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,
},
"metadata": {
Type: schema.TypeMap,
Optional: true,
Computed: true,
},
// Computed values
"bootable": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"volume_type": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"size": {
Type: schema.TypeInt,
Computed: true,
},
"source_volume_id": {
Type: schema.TypeString,
Computed: true,
},
},
}
}
func dataSourceBlockStorageVolumeV2Read(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
config := meta.(*Config)
client, err := config.BlockStorageV2Client(GetRegion(d, config))
if err != nil {
return diag.Errorf("Error creating OpenStack block storage client: %s", err)
}
listOpts := volumes.ListOpts{
Metadata: expandToMapStringString(d.Get("metadata").(map[string]interface{})),
Name: d.Get("name").(string),
Status: d.Get("status").(string),
}
allPages, err := volumes.List(client, listOpts).AllPages()
if err != nil {
return diag.Errorf("Unable to query openstack_blockstorage_volume_v2: %s", err)
}
allVolumes, err := volumes.ExtractVolumes(allPages)
if err != nil {
return diag.Errorf("Unable to retrieve openstack_blockstorage_volume_v2: %s", err)
}
if len(allVolumes) > 1 {
return diag.Errorf("Your openstack_blockstorage_volume_v2 query returned multiple results")
}
if len(allVolumes) < 1 {
return diag.Errorf("Your openstack_blockstorage_volume_v2 query returned no results")
}
dataSourceBlockStorageVolumeV2Attributes(d, allVolumes[0])
return nil
}
func dataSourceBlockStorageVolumeV2Attributes(d *schema.ResourceData, volume volumes.Volume) {
d.SetId(volume.ID)
d.Set("name", volume.Name)
d.Set("status", volume.Status)
d.Set("bootable", volume.Bootable)
d.Set("volume_type", volume.VolumeType)
d.Set("size", volume.Size)
d.Set("source_volume_id", volume.SourceVolID)
if err := d.Set("metadata", volume.Metadata); err != nil {
log.Printf("[DEBUG] Unable to set metadata for volume %s: %s", volume.ID, err)
}
}