tool: Fix azure.go gofmt

Looks like the newer gofmt is a little pickier.

Signed-off-by: Rolf Neugebauer <rn@rneugeba.io>
This commit is contained in:
Rolf Neugebauer 2019-03-02 20:04:48 +00:00
parent c52e831dca
commit d236874874

View File

@ -113,7 +113,7 @@ func createStorageAccount(accountName, location string, resourceGroup resources.
Sku: &storage.Sku{ Sku: &storage.Sku{
Name: storage.StandardLRS, Name: storage.StandardLRS,
}, },
Location: &location, Location: &location,
AccountPropertiesCreateParameters: &storage.AccountPropertiesCreateParameters{}, AccountPropertiesCreateParameters: &storage.AccountPropertiesCreateParameters{},
} }
@ -332,7 +332,7 @@ func createNetworkInterface(resourceGroup resources.Group, networkInterfaceName
InterfaceIPConfigurationPropertiesFormat: &network.InterfaceIPConfigurationPropertiesFormat{ InterfaceIPConfigurationPropertiesFormat: &network.InterfaceIPConfigurationPropertiesFormat{
PublicIPAddress: &publicIPAddress, PublicIPAddress: &publicIPAddress,
PrivateIPAllocationMethod: network.Dynamic, PrivateIPAllocationMethod: network.Dynamic,
Subnet: &subnet, Subnet: &subnet,
}, },
}, },
}, },