Skip to content

Commit

Permalink
Fixed linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
leewilson86 authored Oct 12, 2019
1 parent 4c2ae77 commit 0b31f12
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions azurerm/data_source_loadbalancer_backend_address_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit 0b31f12

Please sign in to comment.