Files
opentf/vendor/github.com/jen20/riviera/storage/api.go
Maxime Bury c98f391bee Add basic implementation for remote state on azure (#7064)
* Add basic implementation for remote state on azure

* Don't auto-provision the container

* Fix compilation errors

* Add factory to the remote map

* Add documentation

* Add acceptance tests
2016-06-10 19:27:57 +02:00

13 lines
352 B
Go

package storage
import "fmt"
const apiVersion = "2015-06-15"
const apiProvider = "Microsoft.Storage"
func storageDefaultURLPathFunc(resourceGroupName, storageAccountName string) func() string {
return func() string {
return fmt.Sprintf("resourceGroups/%s/providers/%s/storageAccounts/%s", resourceGroupName, apiProvider, storageAccountName)
}
}