-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
data_source_managed_disk.go
114 lines (88 loc) · 2.67 KB
/
data_source_managed_disk.go
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
package azurerm
import (
"fmt"
"time"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/azure"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/tags"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/timeouts"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"
)
func dataSourceArmManagedDisk() *schema.Resource {
return &schema.Resource{
Read: dataSourceArmManagedDiskRead,
Timeouts: &schema.ResourceTimeout{
Read: schema.DefaultTimeout(5 * time.Minute),
},
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
},
"resource_group_name": azure.SchemaResourceGroupNameForDataSource(),
"zones": azure.SchemaZonesComputed(),
"storage_account_type": {
Type: schema.TypeString,
Computed: true,
},
"source_uri": {
Type: schema.TypeString,
Computed: true,
},
"source_resource_id": {
Type: schema.TypeString,
Computed: true,
},
"os_type": {
Type: schema.TypeString,
Computed: true,
},
"disk_size_gb": {
Type: schema.TypeInt,
Computed: true,
},
"create_option": {
Type: schema.TypeString,
Computed: true,
},
"disk_iops_read_write": {
Type: schema.TypeInt,
Computed: true,
},
"disk_mbps_read_write": {
Type: schema.TypeInt,
Computed: true,
},
"tags": tags.Schema(),
},
}
}
func dataSourceArmManagedDiskRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).Compute.DisksClient
ctx, cancel := timeouts.ForRead(meta.(*ArmClient).StopContext, d)
defer cancel()
resGroup := d.Get("resource_group_name").(string)
name := d.Get("name").(string)
resp, err := client.Get(ctx, resGroup, name)
if err != nil {
if utils.ResponseWasNotFound(resp.Response) {
return fmt.Errorf("Error: Managed Disk %q (Resource Group %q) was not found", name, resGroup)
}
return fmt.Errorf("[ERROR] Error making Read request on Azure Managed Disk %q (Resource Group %q): %s", name, resGroup, err)
}
d.SetId(*resp.ID)
if sku := resp.Sku; sku != nil {
d.Set("storage_account_type", string(sku.Name))
}
if props := resp.DiskProperties; props != nil {
d.Set("disk_size_gb", props.DiskSizeGB)
d.Set("disk_iops_read_write", props.DiskIOPSReadWrite)
d.Set("disk_mbps_read_write", props.DiskMBpsReadWrite)
d.Set("os_type", props.OsType)
}
if resp.CreationData != nil {
flattenAzureRmManagedDiskCreationData(d, resp.CreationData)
}
d.Set("zones", resp.Zones)
return tags.FlattenAndSet(d, resp.Tags)
}