-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
resource_arm_iothub_endpoint_storage_container.go
301 lines (248 loc) · 10.2 KB
/
resource_arm_iothub_endpoint_storage_container.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package azurerm
import (
"fmt"
"regexp"
"strings"
"time"
"github.com/Azure/azure-sdk-for-go/services/preview/iothub/mgmt/2018-12-01-preview/devices"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/azure"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/tf"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/validate"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/locks"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/timeouts"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"
)
func resourceArmIotHubEndpointStorageContainer() *schema.Resource {
return &schema.Resource{
Create: resourceArmIotHubEndpointStorageContainerCreateUpdate,
Read: resourceArmIotHubEndpointStorageContainerRead,
Update: resourceArmIotHubEndpointStorageContainerCreateUpdate,
Delete: resourceArmIotHubEndpointStorageContainerDelete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(30 * time.Minute),
Read: schema.DefaultTimeout(5 * time.Minute),
Update: schema.DefaultTimeout(30 * time.Minute),
Delete: schema.DefaultTimeout(30 * time.Minute),
},
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validate.IoTHubEndpointName,
},
"resource_group_name": azure.SchemaResourceGroupName(),
"iothub_name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validate.IoTHubName,
},
"container_name": {
Type: schema.TypeString,
Required: true,
ValidateFunc: validate.StorageContainerName,
},
"file_name_format": {
Type: schema.TypeString,
Optional: true,
Default: false,
},
"batch_frequency_in_seconds": {
Type: schema.TypeInt,
Optional: true,
Default: 300,
ValidateFunc: validation.IntBetween(60, 720),
},
"max_chunk_size_in_bytes": {
Type: schema.TypeInt,
Optional: true,
Default: 314572800,
ValidateFunc: validation.IntBetween(10485760, 524288000),
},
"connection_string": {
Type: schema.TypeString,
Required: true,
DiffSuppressFunc: func(k, old, new string, d *schema.ResourceData) bool {
accountKeyRegex := regexp.MustCompile("AccountKey=[^;]+")
maskedNew := accountKeyRegex.ReplaceAllString(new, "AccountKey=****")
return (new == d.Get(k).(string)) && (maskedNew == old)
},
Sensitive: true,
},
"encoding": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice([]string{
string(devices.Avro),
string(devices.AvroDeflate),
string(devices.JSON),
}, true),
},
},
}
}
func resourceArmIotHubEndpointStorageContainerCreateUpdate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).IoTHub.ResourceClient
ctx, cancel := timeouts.ForCreateUpdate(meta.(*ArmClient).StopContext, d)
defer cancel()
subscriptionID := meta.(*ArmClient).subscriptionId
iothubName := d.Get("iothub_name").(string)
resourceGroup := d.Get("resource_group_name").(string)
locks.ByName(iothubName, iothubResourceName)
defer locks.UnlockByName(iothubName, iothubResourceName)
iothub, err := client.Get(ctx, resourceGroup, iothubName)
if err != nil {
if utils.ResponseWasNotFound(iothub.Response) {
return fmt.Errorf("IotHub %q (Resource Group %q) was not found", iothubName, resourceGroup)
}
return fmt.Errorf("Error loading IotHub %q (Resource Group %q): %+v", iothubName, resourceGroup, err)
}
endpointName := d.Get("name").(string)
resourceId := fmt.Sprintf("%s/Endpoints/%s", *iothub.ID, endpointName)
connectionStr := d.Get("connection_string").(string)
containerName := d.Get("container_name").(string)
fileNameFormat := d.Get("file_name_format").(string)
batchFrequencyInSeconds := int32(d.Get("batch_frequency_in_seconds").(int))
maxChunkSizeInBytes := int32(d.Get("max_chunk_size_in_bytes").(int))
encoding := d.Get("encoding").(string)
storageContainerEndpoint := devices.RoutingStorageContainerProperties{
ConnectionString: &connectionStr,
Name: &endpointName,
SubscriptionID: &subscriptionID,
ResourceGroup: &resourceGroup,
ContainerName: &containerName,
FileNameFormat: &fileNameFormat,
BatchFrequencyInSeconds: &batchFrequencyInSeconds,
MaxChunkSizeInBytes: &maxChunkSizeInBytes,
Encoding: devices.Encoding(encoding),
}
routing := iothub.Properties.Routing
if routing == nil {
routing = &devices.RoutingProperties{}
}
if routing.Endpoints == nil {
routing.Endpoints = &devices.RoutingEndpoints{}
}
if routing.Endpoints.StorageContainers == nil {
storageContainers := make([]devices.RoutingStorageContainerProperties, 0)
routing.Endpoints.StorageContainers = &storageContainers
}
endpoints := make([]devices.RoutingStorageContainerProperties, 0)
alreadyExists := false
for _, existingEndpoint := range *routing.Endpoints.StorageContainers {
if existingEndpointName := existingEndpoint.Name; existingEndpointName != nil {
if strings.EqualFold(*existingEndpointName, endpointName) {
if d.IsNewResource() && requireResourcesToBeImported {
return tf.ImportAsExistsError("azurerm_iothub_endpoint_storage_container", resourceId)
}
endpoints = append(endpoints, storageContainerEndpoint)
alreadyExists = true
} else {
endpoints = append(endpoints, existingEndpoint)
}
}
}
if d.IsNewResource() {
endpoints = append(endpoints, storageContainerEndpoint)
} else if !alreadyExists {
return fmt.Errorf("Unable to find Storage Container Endpoint %q defined for IotHub %q (Resource Group %q)", endpointName, iothubName, resourceGroup)
}
routing.Endpoints.StorageContainers = &endpoints
future, err := client.CreateOrUpdate(ctx, resourceGroup, iothubName, iothub, "")
if err != nil {
return fmt.Errorf("Error creating/updating IotHub %q (Resource Group %q): %+v", iothubName, resourceGroup, err)
}
if err = future.WaitForCompletionRef(ctx, client.Client); err != nil {
return fmt.Errorf("Error waiting for the completion of the creating/updating of IotHub %q (Resource Group %q): %+v", iothubName, resourceGroup, err)
}
d.SetId(resourceId)
return resourceArmIotHubEndpointStorageContainerRead(d, meta)
}
func resourceArmIotHubEndpointStorageContainerRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).IoTHub.ResourceClient
ctx, cancel := timeouts.ForRead(meta.(*ArmClient).StopContext, d)
defer cancel()
parsedIothubEndpointId, err := parseAzureResourceID(d.Id())
if err != nil {
return err
}
resourceGroup := parsedIothubEndpointId.ResourceGroup
iothubName := parsedIothubEndpointId.Path["IotHubs"]
endpointName := parsedIothubEndpointId.Path["Endpoints"]
iothub, err := client.Get(ctx, resourceGroup, iothubName)
if err != nil {
return fmt.Errorf("Error loading IotHub %q (Resource Group %q): %+v", iothubName, resourceGroup, err)
}
d.Set("name", endpointName)
d.Set("iothub_name", iothubName)
d.Set("resource_group_name", resourceGroup)
if iothub.Properties == nil || iothub.Properties.Routing == nil || iothub.Properties.Routing.Endpoints == nil {
return nil
}
if endpoints := iothub.Properties.Routing.Endpoints.StorageContainers; endpoints != nil {
for _, endpoint := range *endpoints {
if existingEndpointName := endpoint.Name; existingEndpointName != nil {
if strings.EqualFold(*existingEndpointName, endpointName) {
d.Set("connection_string", endpoint.ConnectionString)
d.Set("container_name", endpoint.ContainerName)
d.Set("file_name_format", endpoint.FileNameFormat)
d.Set("batch_frequency_in_seconds", endpoint.BatchFrequencyInSeconds)
d.Set("max_chunk_size_in_bytes", endpoint.MaxChunkSizeInBytes)
d.Set("encoding", endpoint.Encoding)
}
}
}
}
return nil
}
func resourceArmIotHubEndpointStorageContainerDelete(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).IoTHub.ResourceClient
ctx, cancel := timeouts.ForDelete(meta.(*ArmClient).StopContext, d)
defer cancel()
parsedIothubEndpointId, err := parseAzureResourceID(d.Id())
if err != nil {
return err
}
resourceGroup := parsedIothubEndpointId.ResourceGroup
iothubName := parsedIothubEndpointId.Path["IotHubs"]
endpointName := parsedIothubEndpointId.Path["Endpoints"]
locks.ByName(iothubName, iothubResourceName)
defer locks.UnlockByName(iothubName, iothubResourceName)
iothub, err := client.Get(ctx, resourceGroup, iothubName)
if err != nil {
if utils.ResponseWasNotFound(iothub.Response) {
return fmt.Errorf("IotHub %q (Resource Group %q) was not found", iothubName, resourceGroup)
}
return fmt.Errorf("Error loading IotHub %q (Resource Group %q): %+v", iothubName, resourceGroup, err)
}
if iothub.Properties == nil || iothub.Properties.Routing == nil || iothub.Properties.Routing.Endpoints == nil {
return nil
}
endpoints := iothub.Properties.Routing.Endpoints.StorageContainers
if endpoints == nil {
return nil
}
updatedEndpoints := make([]devices.RoutingStorageContainerProperties, 0)
for _, endpoint := range *endpoints {
if existingEndpointName := endpoint.Name; existingEndpointName != nil {
if !strings.EqualFold(*existingEndpointName, endpointName) {
updatedEndpoints = append(updatedEndpoints, endpoint)
}
}
}
iothub.Properties.Routing.Endpoints.StorageContainers = &updatedEndpoints
future, err := client.CreateOrUpdate(ctx, resourceGroup, iothubName, iothub, "")
if err != nil {
return fmt.Errorf("Error updating IotHub %q (Resource Group %q) with Storage Container Endpoint %q: %+v", iothubName, resourceGroup, endpointName, err)
}
if err = future.WaitForCompletionRef(ctx, client.Client); err != nil {
return fmt.Errorf("Error waiting for IotHub %q (Resource Group %q) to finish updating Storage Container Endpoint %q: %+v", iothubName, resourceGroup, endpointName, err)
}
return nil
}