var Cmd = &cobra.Command{
Use: "regions",
Aliases: []string{"region"},
Short: "List available regions",
Long: "List regions that are available for the current AWS account.",
Example: ` # List all available regions
rosa list regions`,
Run: run,
Args: cobra.NoArgs,
}