Merge pull request #5676 from hashicorp/fix5669

Correctly set aws region if given in template along with a profile.
This commit is contained in:
Matthew Hooker
2017-12-07 11:13:44 -08:00
committed by GitHub
+3 -1
View File
@@ -40,7 +40,9 @@ func (c *AccessConfig) Session() (*session.Session, error) {
if err := os.Setenv("AWS_PROFILE", c.ProfileName); err != nil {
return nil, fmt.Errorf("Set env error: %s", err)
}
} else if c.RawRegion != "" {
}
if c.RawRegion != "" {
config = config.WithRegion(c.RawRegion)
} else if region := c.metadataRegion(); region != "" {
config = config.WithRegion(region)