Merge pull request #5676 from hashicorp/fix5669

Correctly set aws region if given in template along with a profile.
pull/5678/head
Matthew Hooker 8 years ago committed by GitHub
commit da4d6f76be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)

Loading…
Cancel
Save