mirror of https://github.com/databricks/cli.git
Add URLs for authentication documentation to the auth command help (#1365)
``` ➜ cli git:(fix/better-auth-docs) ✗ cli auth -h Authentication related commands. For more information regarding how authentication for the Databricks CLI and SDKs work please refer to the documentation linked below. AWS: https://docs.databricks.com/en/dev-tools/auth/index.html Azure: https://learn.microsoft.com/en-us/azure/databricks/dev-tools/auth GCP: https://docs.gcp.databricks.com/en/dev-tools/auth/index.html ```
This commit is contained in:
parent
ed56bbca16
commit
1f1fe4c6a8
|
@ -12,6 +12,13 @@ func New() *cobra.Command {
|
|||
cmd := &cobra.Command{
|
||||
Use: "auth",
|
||||
Short: "Authentication related commands",
|
||||
Long: `Authentication related commands. For more information regarding how
|
||||
authentication for the Databricks CLI and SDKs work please refer to the documentation
|
||||
linked below.
|
||||
|
||||
AWS: https://docs.databricks.com/en/dev-tools/auth/index.html
|
||||
Azure: https://learn.microsoft.com/en-us/azure/databricks/dev-tools/auth
|
||||
GCP: https://docs.gcp.databricks.com/en/dev-tools/auth/index.html`,
|
||||
}
|
||||
|
||||
var perisistentAuth auth.PersistentAuth
|
||||
|
|
Loading…
Reference in New Issue