mirror of
https://github.com/lxc/incus.git
synced 2026-02-05 18:45:46 +01:00
10 lines
263 B
Go
10 lines
263 B
Go
package api
|
|
|
|
const (
|
|
// AuthenticationMethodTLS is the default authentication method for interacting with Incus remotely.
|
|
AuthenticationMethodTLS = "tls"
|
|
|
|
// AuthenticationMethodOIDC is a token based authentication method.
|
|
AuthenticationMethodOIDC = "oidc"
|
|
)
|