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:
parent
3ce3a2ad80
commit
771f9bf849
2 changed files with 14 additions and 14 deletions
|
|
@ -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() {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue