From 0b31f12c630364139adf2c6c66968fe73008deb5 Mon Sep 17 00:00:00 2001 From: Lee Wilson <264361+leewilson86@users.noreply.github.com> Date: Sat, 12 Oct 2019 12:46:02 +0100 Subject: [PATCH] Fixed linting issues --- azurerm/data_source_loadbalancer_backend_address_pool.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/azurerm/data_source_loadbalancer_backend_address_pool.go b/azurerm/data_source_loadbalancer_backend_address_pool.go index 82cbe672e074..ec695049b6f1 100644 --- a/azurerm/data_source_loadbalancer_backend_address_pool.go +++ b/azurerm/data_source_loadbalancer_backend_address_pool.go @@ -68,13 +68,10 @@ func dataSourceArmLoadBalancerBackendAddressPoolRead(d *schema.ResourceData, met backendIPConfigurations := make([]interface{}, 0) if props := bap.BackendAddressPoolPropertiesFormat; props != nil { if beipConfigs := props.BackendIPConfigurations; beipConfigs != nil { - for _, config := range *beipConfigs { ipConfig := make(map[string]interface{}) - if id := config.ID; id != nil { ipConfig["id"] = *id - backendIPConfigurations = append(backendIPConfigurations, ipConfig) } }