forked from TrueCloudLab/restic
added azure domain parameter
This commit is contained in:
parent
f96896a9c0
commit
068b115abc
5 changed files with 30 additions and 6 deletions
|
@ -53,7 +53,13 @@ func open(cfg Config, rt http.RoundTripper) (*Backend, error) {
|
|||
var client *azContainer.Client
|
||||
var err error
|
||||
|
||||
url := fmt.Sprintf("https://%s.blob.core.windows.net/%s", cfg.AccountName, cfg.Container)
|
||||
var endpointSuffix string
|
||||
if cfg.EndpointSuffix != "" {
|
||||
endpointSuffix = cfg.EndpointSuffix
|
||||
} else {
|
||||
endpointSuffix = "core.windows.net"
|
||||
}
|
||||
url := fmt.Sprintf("https://%s.blob.%s/%s", cfg.AccountName, endpointSuffix, cfg.Container)
|
||||
opts := &azContainer.ClientOptions{
|
||||
ClientOptions: azcore.ClientOptions{
|
||||
Transport: &http.Client{Transport: rt},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue