fc117afebc
* TestUtils: Add helper to create certs * InlineSecureValue: Move to its own package rather than service * Settings: Rename decrypt server configs to grpc prefixed as it is more generic * InlineSecureValue: Add gRPC client * InlineSecureValue: Add service provider grpc/local depending on setting.Cfg * Wire: Add ProvideInlineSecureValueService to basic wireset * InlineSecureValue: Re-export in root secret pkg and generate mocks for interface * Settings: Unify decrypt+inline setting into generic grpc client
9 lines
378 B
Go
9 lines
378 B
Go
package secret
|
|
|
|
import "github.com/grafana/grafana/pkg/registry/apis/secret/contracts"
|
|
|
|
// InlineSecureValueSupport allows resources to manage secrets inline
|
|
//
|
|
//go:generate mockery --name InlineSecureValueSupport --structname MockInlineSecureValueSupport --inpackage --filename inline_mock.go --with-expecter
|
|
type InlineSecureValueSupport = contracts.InlineSecureValueSupport
|