From 5be2cb7c972ba0e55b2b603824c51dce3b9ccc11 Mon Sep 17 00:00:00 2001 From: tombuildsstuff Date: Tue, 4 Jul 2017 16:28:30 +0100 Subject: [PATCH] Fixing the formatting --- azurerm/resource_arm_servicebus_queue.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/azurerm/resource_arm_servicebus_queue.go b/azurerm/resource_arm_servicebus_queue.go index 43c01707094c..3b8be54402c5 100644 --- a/azurerm/resource_arm_servicebus_queue.go +++ b/azurerm/resource_arm_servicebus_queue.go @@ -116,15 +116,15 @@ func resourceArmServiceBusQueueCreateUpdate(d *schema.ResourceData, meta interfa supportOrdering := d.Get("support_ordering").(bool) parameters := servicebus.QueueCreateOrUpdateParameters{ - Name: &name, - Location: &location, + Name: &name, + Location: &location, QueueProperties: &servicebus.QueueProperties{ - EnableBatchedOperations: &enableBatchedOps, - EnableExpress: &enableExpress, - EnablePartitioning: &enablePartitioning, - MaxSizeInMegabytes: &maxSize, + EnableBatchedOperations: &enableBatchedOps, + EnableExpress: &enableExpress, + EnablePartitioning: &enablePartitioning, + MaxSizeInMegabytes: &maxSize, RequiresDuplicateDetection: &requiresDuplicateDetection, - SupportOrdering: &supportOrdering, + SupportOrdering: &supportOrdering, }, }