azure: normalize the terms for Azure credentials

The account field is actually a storage account and the secret key is actually
a storage secret key. This is clearer to the user.
This commit is contained in:
Ondřej Budai 2020-04-27 13:59:20 +02:00
parent 3ce3a2ad80
commit 771f9bf849
2 changed files with 14 additions and 14 deletions

View file

@ -1,10 +1,10 @@
package target
type AzureTargetOptions struct {
Filename string `json:"filename"`
Account string `json:"account"`
AccessKey string `json:"accessKey"`
Container string `json:"container"`
Filename string `json:"filename"`
StorageAccount string `json:"storageAccount"`
StorageAccessKey string `json:"storageAccessKey"`
Container string `json:"container"`
}
func (AzureTargetOptions) isTargetOptions() {}