databricks-cli/cmd/account/credentials/overrides.go

17 lines
373 B
Go

package credentials
import (
"github.com/databricks/cli/libs/cmdio"
"github.com/spf13/cobra"
)
func listOverride(listCmd *cobra.Command) {
listCmd.Annotations["template"] = cmdio.Heredoc(`
{{range .}}{{.CredentialsId | green}} {{.CredentialsName}} {{.AwsCredentials.StsRole.RoleArn}}
{{end}}`)
}
func init() {
listOverrides = append(listOverrides, listOverride)
}