mirror of
https://github.com/lxc/incus.git
synced 2026-02-06 21:46:11 +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"
|
|
)
|