Documentation ¶
Index ¶
Constants ¶
View Source
const ( // APITokenEnvVar is the environment variable for the api token. APITokenEnvVar = "DAPR_API_TOKEN" AppAPITokenEnvVar = "APP_API_TOKEN" // APITokenHeader is header name for http/gRPC calls to hold the token. APITokenHeader = "dapr-api-token" )
#nosec.
View Source
const (
TLSServerName = "cluster.local"
)
Variables ¶
This section is empty.
Functions ¶
func ExcludedRoute ¶ added in v0.8.0
ExcludedRoute returns whether a given route should be excluded from a token check.
func GetAPIToken ¶ added in v0.8.0
func GetAPIToken() string
GetAPIToken returns the value of the api token from an environment variable.
func GetAppToken ¶ added in v1.0.0
func GetAppToken() string
GetAppToken returns the value of the app api token from an environment variable.
func GetCertChain ¶ added in v0.6.0
func GetCertChain() (*credentials.CertChain, error)
Types ¶
type Authenticator ¶
type Authenticator interface { GetTrustAnchors() *x509.CertPool GetCurrentSignedCert() *SignedCertificate CreateSignedWorkloadCert(id, namespace, trustDomain string) (*SignedCertificate, error) }
func GetSidecarAuthenticator ¶
func GetSidecarAuthenticator(sentryAddress string, certChain *credentials.CertChain) (Authenticator, error)
GetSidecarAuthenticator returns a new authenticator with the extracted trust anchors.
Click to show internal directories.
Click to hide internal directories.