in aws.go [245:251]
func (c *AWSConfig) profileIniSection(profileName string) (*ini.Section, error) {
if section := c.awsConfigIni.Section(fmt.Sprintf("profile %s", profileName)); section != nil {
return section, nil
}
return c.awsConfigIni.NewSection(profileName)
}