15 lines
321 B
Go
15 lines
321 B
Go
package nebula
|
|
|
|
import (
|
|
"isle/secrets"
|
|
)
|
|
|
|
var (
|
|
caSigningPrivateKeySecretID = secrets.NewID("nebula", "ca-signing-private-key")
|
|
)
|
|
|
|
// Get/Set functions for the CA SigningPrivateKey secret.
|
|
var GetCASigningPrivateKey, SetCASigningPrivateKey = secrets.GetSetFunctions[SigningPrivateKey](
|
|
caSigningPrivateKeySecretID,
|
|
)
|