-
Notifications
You must be signed in to change notification settings - Fork 9
/
interface.go
33 lines (26 loc) · 981 Bytes
/
interface.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package secrets
import (
"context"
"namespacelabs.dev/foundation/schema"
"namespacelabs.dev/foundation/std/pkggraph"
)
type SecretsSource interface {
Load(context.Context, pkggraph.Modules, *SecretLoadRequest) (*schema.SecretResult, error)
MissingError(*schema.PackageRef, *schema.SecretSpec, schema.PackageName) error
}
type SecretLoadRequest struct {
SecretRef *schema.PackageRef
Server *SecretLoadRequest_ServerRef
ExternalRefTypeUrl []string
}
type SecretLoadRequest_ServerRef struct {
PackageName schema.PackageName
ModuleName string
RelPath string // Relative path within the module.
}
type GroundedSecrets interface {
Get(ctx context.Context, secretRef *schema.PackageRef, externalRefTypeUrl ...string) (*schema.SecretResult, error)
}