Append /tokens suffix if not present for specific OpenStack authentication URLs

This commit is contained in:
Devin Carlen 2014-01-06 13:41:30 -08:00
parent bef63846af
commit 828d7ebdca
1 changed files with 9 additions and 1 deletions

View File

@ -8,6 +8,7 @@ import (
"net/http"
"net/url"
"os"
"strings"
)
// AccessConfig is for common configuration related to openstack access
@ -29,6 +30,13 @@ func (c *AccessConfig) Auth() (gophercloud.AccessProvider, error) {
c.Provider = common.CoalesceVals(c.Provider, os.Getenv("SDK_PROVIDER"), os.Getenv("OS_AUTH_URL"))
c.RawRegion = common.CoalesceVals(c.RawRegion, os.Getenv("SDK_REGION"), os.Getenv("OS_REGION_NAME"))
// OpenStack's auto-generated openrc.sh files do not append the suffix
// /tokens to the authentication URL. This ensures it is present when
// specifying the URL.
if strings.Contains(c.Provider, "://") && !strings.HasSuffix(c.Provider, "/tokens") {
c.Provider += "/tokens"
}
authoptions := gophercloud.AuthOptions{
Username: c.Username,
Password: c.Password,
@ -84,7 +92,7 @@ func (c *AccessConfig) Prepare(t *packer.ConfigTemplate) []error {
}
}
if c.RawRegion == "" {
if c.Region() == "" {
errs = append(errs, fmt.Errorf("region must be specified"))
}