in config/configure_list.go [37:90]
func doConfigureList(w io.Writer) {
conf, err := loadConfiguration()
if err != nil {
cli.Errorf(w, "ERROR: load configure failed: %v\n", err)
}
tw := tabwriter.NewWriter(w, 8, 0, 1, ' ', 0)
fmt.Fprint(tw, "Profile\t| Credential \t| Valid\t| Region\t| Language\n")
fmt.Fprint(tw, "---------\t| ------------------\t| -------\t| ----------------\t| --------\n")
for _, pf := range conf.Profiles {
name := pf.Name
if name == conf.CurrentProfile {
name = name + " *"
}
err := pf.Validate()
valid := "Valid"
if err != nil {
valid = "Invalid"
}
cred := ""
switch pf.Mode {
case AK:
cred = "AK:" + "***" + GetLastChars(pf.AccessKeyId, 3)
case StsToken:
cred = "StsToken:" + "***" + GetLastChars(pf.AccessKeyId, 3)
case RamRoleArn:
cred = "RamRoleArn:" + "***" + GetLastChars(pf.AccessKeyId, 3)
if pf.ExternalId != "" {
cred = cred + ":" + GetLastChars(pf.ExternalId, 3)
}
case EcsRamRole:
cred = "EcsRamRole:" + pf.RamRoleName
case RamRoleArnWithEcs:
cred = "arn:" + "***" + GetLastChars(pf.AccessKeyId, 3)
case ChainableRamRoleArn:
cred = "ChainableRamRoleArn:" + pf.SourceProfile + ":" + pf.RamRoleArn
if pf.ExternalId != "" {
cred = cred + ":" + GetLastChars(pf.ExternalId, 3)
}
case RsaKeyPair:
cred = "RsaKeyPair:" + pf.KeyPairName
case External:
cred = "ProcessCommand:" + pf.ProcessCommand
case CredentialsURI:
cred = "CredentialsURI:" + pf.CredentialsURI
case OIDC:
cred = "OIDC:" + "***" + GetLastChars(pf.OIDCProviderARN, 5) + "@***" + GetLastChars(pf.OIDCTokenFile, 5) + "@" + pf.RamRoleArn
case CloudSSO:
cred = "CloudSSO:" + pf.CloudSSOAccountId + "@" + pf.CloudSSOAccessConfig
}
fmt.Fprintf(tw, "%s\t| %s\t| %s\t| %s\t| %s\n", name, cred, valid, pf.RegionId, pf.Language)
}
tw.Flush()
}