1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00

"GetAllSecrets not implemented" -> "GetAllSecrets not supported"

This commit is contained in:
Docs 2022-05-13 13:10:56 +03:00
parent 1a0fbbf4cd
commit f4f2170502

View file

@ -31,7 +31,7 @@ type yandexCloudSecretsClient struct {
func (c *yandexCloudSecretsClient) GetAllSecrets(ctx context.Context, ref esv1beta1.ExternalSecretFind) (map[string][]byte, error) {
// TO be implemented
return nil, fmt.Errorf("GetAllSecrets not implemented")
return nil, fmt.Errorf("GetAllSecrets not supported")
}
func (c *yandexCloudSecretsClient) GetSecret(ctx context.Context, ref esv1beta1.ExternalSecretDataRemoteRef) ([]byte, error) {