You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/vendor/github.com/jen20/riviera/azure/api.go

12 lines
240 B

package azure
import "fmt"
const resourceGroupAPIVersion = "2015-01-01"
func resourceGroupDefaultURLFunc(resourceGroupName string) func() string {
return func() string {
return fmt.Sprintf("resourceGroups/%s", resourceGroupName)
}
}