-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
resource_arm_servicebus_topic.go
277 lines (229 loc) · 8.48 KB
/
resource_arm_servicebus_topic.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
package azurerm
import (
"fmt"
"log"
"github.com/Azure/azure-sdk-for-go/services/servicebus/mgmt/2017-04-01/servicebus"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/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/utils"
)
func resourceArmServiceBusTopic() *schema.Resource {
return &schema.Resource{
Create: resourceArmServiceBusTopicCreateUpdate,
Read: resourceArmServiceBusTopicRead,
Update: resourceArmServiceBusTopicCreateUpdate,
Delete: resourceArmServiceBusTopicDelete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: azure.ValidateServiceBusTopicName(),
},
"namespace_name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: azure.ValidateServiceBusNamespaceName(),
},
"location": deprecatedLocationSchema(),
"resource_group_name": resourceGroupNameSchema(),
"status": {
Type: schema.TypeString,
Optional: true,
Default: string(servicebus.Active),
ValidateFunc: validation.StringInSlice([]string{
string(servicebus.Active),
string(servicebus.Disabled),
}, true),
DiffSuppressFunc: ignoreCaseDiffSuppressFunc,
},
"auto_delete_on_idle": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ValidateFunc: validateIso8601Duration(),
},
"default_message_ttl": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ValidateFunc: validateIso8601Duration(),
},
"duplicate_detection_history_time_window": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ValidateFunc: validateIso8601Duration(),
},
"enable_batched_operations": {
Type: schema.TypeBool,
Optional: true,
},
"enable_express": {
Type: schema.TypeBool,
Optional: true,
},
"enable_partitioning": {
Type: schema.TypeBool,
Optional: true,
ForceNew: true,
},
"max_size_in_megabytes": {
Type: schema.TypeInt,
Optional: true,
Computed: true,
},
"requires_duplicate_detection": {
Type: schema.TypeBool,
Optional: true,
ForceNew: true,
},
"support_ordering": {
Type: schema.TypeBool,
Optional: true,
},
// TODO: remove in the next major version
"enable_filtering_messages_before_publishing": {
Type: schema.TypeBool,
Optional: true,
Deprecated: "This field has been removed by Azure",
},
},
}
}
func resourceArmServiceBusTopicCreateUpdate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).serviceBusTopicsClient
ctx := meta.(*ArmClient).StopContext
log.Printf("[INFO] preparing arguments for Azure ServiceBus Topic creation.")
name := d.Get("name").(string)
namespaceName := d.Get("namespace_name").(string)
resourceGroup := d.Get("resource_group_name").(string)
status := d.Get("status").(string)
enableBatchedOps := d.Get("enable_batched_operations").(bool)
enableExpress := d.Get("enable_express").(bool)
enablePartitioning := d.Get("enable_partitioning").(bool)
maxSize := int32(d.Get("max_size_in_megabytes").(int))
requiresDuplicateDetection := d.Get("requires_duplicate_detection").(bool)
supportOrdering := d.Get("support_ordering").(bool)
if requireResourcesToBeImported && d.IsNewResource() {
existing, err := client.Get(ctx, resourceGroup, namespaceName, name)
if err != nil {
if !utils.ResponseWasNotFound(existing.Response) {
return fmt.Errorf("Error checking for presence of existing ServiceBus Topic %q (resource group %q, namespace %q): %v", name, resourceGroup, namespaceName, err)
}
}
if existing.ID != nil && *existing.ID != "" {
return tf.ImportAsExistsError("azurerm_service_fabric_cluster", *existing.ID)
}
}
parameters := servicebus.SBTopic{
Name: &name,
SBTopicProperties: &servicebus.SBTopicProperties{
Status: servicebus.EntityStatus(status),
EnableBatchedOperations: utils.Bool(enableBatchedOps),
EnableExpress: utils.Bool(enableExpress),
EnablePartitioning: utils.Bool(enablePartitioning),
MaxSizeInMegabytes: utils.Int32(maxSize),
RequiresDuplicateDetection: utils.Bool(requiresDuplicateDetection),
SupportOrdering: utils.Bool(supportOrdering),
},
}
if autoDeleteOnIdle := d.Get("auto_delete_on_idle").(string); autoDeleteOnIdle != "" {
parameters.SBTopicProperties.AutoDeleteOnIdle = utils.String(autoDeleteOnIdle)
}
if defaultTTL := d.Get("default_message_ttl").(string); defaultTTL != "" {
parameters.SBTopicProperties.DefaultMessageTimeToLive = utils.String(defaultTTL)
}
if duplicateWindow := d.Get("duplicate_detection_history_time_window").(string); duplicateWindow != "" {
parameters.SBTopicProperties.DuplicateDetectionHistoryTimeWindow = utils.String(duplicateWindow)
}
if _, err := client.CreateOrUpdate(ctx, resourceGroup, namespaceName, name, parameters); err != nil {
return fmt.Errorf("Error issuing create/update request for ServiceBus Topic %q (resource group %q, namespace %q): %v", name, resourceGroup, namespaceName, err)
}
read, err := client.Get(ctx, resourceGroup, namespaceName, name)
if err != nil {
return fmt.Errorf("Error issuing get request for ServiceBus Topic %q (resource group %q, namespace %q): %v", name, resourceGroup, namespaceName, err)
}
if read.ID == nil {
return fmt.Errorf("Cannot read ServiceBus Topic %s (resource group %s) ID", name, resourceGroup)
}
d.SetId(*read.ID)
return resourceArmServiceBusTopicRead(d, meta)
}
func resourceArmServiceBusTopicRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).serviceBusTopicsClient
ctx := meta.(*ArmClient).StopContext
id, err := parseAzureResourceID(d.Id())
if err != nil {
return err
}
resourceGroup := id.ResourceGroup
namespaceName := id.Path["namespaces"]
name := id.Path["topics"]
resp, err := client.Get(ctx, resourceGroup, namespaceName, name)
if err != nil {
if utils.ResponseWasNotFound(resp.Response) {
d.SetId("")
return nil
}
return fmt.Errorf("Error making Read request on Azure ServiceBus Topic %s: %+v", name, err)
}
d.Set("name", resp.Name)
d.Set("resource_group_name", resourceGroup)
d.Set("namespace_name", namespaceName)
if props := resp.SBTopicProperties; props != nil {
d.Set("status", string(props.Status))
d.Set("auto_delete_on_idle", props.AutoDeleteOnIdle)
d.Set("default_message_ttl", props.DefaultMessageTimeToLive)
if window := props.DuplicateDetectionHistoryTimeWindow; window != nil && *window != "" {
d.Set("duplicate_detection_history_time_window", *window)
}
d.Set("enable_batched_operations", props.EnableBatchedOperations)
d.Set("enable_express", props.EnableExpress)
d.Set("enable_partitioning", props.EnablePartitioning)
d.Set("requires_duplicate_detection", props.RequiresDuplicateDetection)
d.Set("support_ordering", props.SupportOrdering)
if maxSizeMB := props.MaxSizeInMegabytes; maxSizeMB != nil {
maxSize := int(*props.MaxSizeInMegabytes)
// if the topic is in a premium namespace and partitioning is enabled then the
// max size returned by the API will be 16 times greater than the value set
if partitioning := props.EnablePartitioning; partitioning != nil && *partitioning {
namespacesClient := meta.(*ArmClient).serviceBusNamespacesClient
namespace, err := namespacesClient.Get(ctx, resourceGroup, namespaceName)
if err != nil {
return err
}
if namespace.Sku.Name != servicebus.Premium {
const partitionCount = 16
maxSize = int(*props.MaxSizeInMegabytes / partitionCount)
}
}
d.Set("max_size_in_megabytes", maxSize)
}
}
return nil
}
func resourceArmServiceBusTopicDelete(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).serviceBusTopicsClient
ctx := meta.(*ArmClient).StopContext
id, err := parseAzureResourceID(d.Id())
if err != nil {
return err
}
resourceGroup := id.ResourceGroup
namespaceName := id.Path["namespaces"]
name := id.Path["topics"]
resp, err := client.Delete(ctx, resourceGroup, namespaceName, name)
if err != nil {
if !utils.ResponseWasNotFound(resp) {
return err
}
}
return nil
}