You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
563 B
25 lines
563 B
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package store
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"tailscale.com/ipn"
|
|
"tailscale.com/ipn/store/awsstore"
|
|
"tailscale.com/ipn/store/kubestore"
|
|
"tailscale.com/types/logger"
|
|
)
|
|
|
|
func init() {
|
|
registerAvailableExternalStores = registerExternalStores
|
|
}
|
|
|
|
func registerExternalStores() {
|
|
Register("kube:", func(logf logger.Logf, path string) (ipn.StateStore, error) {
|
|
secretName := strings.TrimPrefix(path, "kube:")
|
|
return kubestore.New(logf, secretName)
|
|
})
|
|
Register("arn:", awsstore.New)
|
|
}
|
|
|