| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- /*
- Copyright © 2025 ESO Maintainer Team
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- https://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package delinea
- import (
- "context"
- "errors"
- "github.com/DelineaXPM/dsv-sdk-go/v2/vault"
- kubeClient "sigs.k8s.io/controller-runtime/pkg/client"
- "sigs.k8s.io/controller-runtime/pkg/webhook/admission"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- "github.com/external-secrets/external-secrets/pkg/esutils"
- "github.com/external-secrets/external-secrets/pkg/esutils/resolvers"
- )
- var (
- errEmptyTenant = errors.New("tenant must not be empty")
- errEmptyClientID = errors.New("clientID must be set")
- errEmptyClientSecret = errors.New("clientSecret must be set")
- errSecretRefAndValueConflict = errors.New("cannot specify both secret reference and value")
- errSecretRefAndValueMissing = errors.New("must specify either secret reference or direct value")
- errMissingStore = errors.New("missing store specification")
- errInvalidSpec = errors.New("invalid specification for delinea provider")
- errMissingSecretName = errors.New("must specify a secret name")
- errMissingSecretKey = errors.New("must specify a secret key")
- errClusterStoreRequiresNamespace = errors.New("when using a ClusterSecretStore, namespaces must be explicitly set")
- )
- // Provider implements the External Secrets provider for Delinea Secret Server.
- type Provider struct{}
- var _ esv1.Provider = &Provider{}
- // Capabilities return the provider supported capabilities (ReadOnly, WriteOnly, ReadWrite).
- func (p *Provider) Capabilities() esv1.SecretStoreCapabilities {
- return esv1.SecretStoreReadOnly
- }
- // NewClient creates a new Delinea Secret Server client.
- func (p *Provider) NewClient(ctx context.Context, store esv1.GenericStore, kube kubeClient.Client, namespace string) (esv1.SecretsClient, error) {
- cfg, err := getConfig(store)
- if err != nil {
- return nil, err
- }
- if store.GetKind() == esv1.ClusterSecretStoreKind && doesConfigDependOnNamespace(cfg) {
- // we are not attached to a specific namespace, but some config values are dependent on it
- return nil, errClusterStoreRequiresNamespace
- }
- clientID, err := loadConfigSecret(ctx, store.GetKind(), cfg.ClientID, kube, namespace)
- if err != nil {
- return nil, err
- }
- clientSecret, err := loadConfigSecret(ctx, store.GetKind(), cfg.ClientSecret, kube, namespace)
- if err != nil {
- return nil, err
- }
- dsvClient, err := vault.New(vault.Configuration{
- Credentials: vault.ClientCredential{
- ClientID: clientID,
- ClientSecret: clientSecret,
- },
- Tenant: cfg.Tenant,
- TLD: cfg.TLD,
- URLTemplate: cfg.URLTemplate,
- })
- if err != nil {
- return nil, err
- }
- return &client{
- api: dsvClient,
- }, nil
- }
- func loadConfigSecret(
- ctx context.Context,
- storeKind string,
- ref *esv1.DelineaProviderSecretRef,
- kube kubeClient.Client,
- namespace string) (string, error) {
- if ref.SecretRef == nil {
- return ref.Value, nil
- }
- if err := validateSecretRef(ref); err != nil {
- return "", err
- }
- return resolvers.SecretKeyRef(ctx, kube, storeKind, namespace, ref.SecretRef)
- }
- func validateStoreSecretRef(store esv1.GenericStore, ref *esv1.DelineaProviderSecretRef) error {
- if ref.SecretRef != nil {
- if err := esutils.ValidateReferentSecretSelector(store, *ref.SecretRef); err != nil {
- return err
- }
- }
- return validateSecretRef(ref)
- }
- func validateSecretRef(ref *esv1.DelineaProviderSecretRef) error {
- if ref.SecretRef != nil {
- if ref.Value != "" {
- return errSecretRefAndValueConflict
- }
- if ref.SecretRef.Name == "" {
- return errMissingSecretName
- }
- if ref.SecretRef.Key == "" {
- return errMissingSecretKey
- }
- } else if ref.Value == "" {
- return errSecretRefAndValueMissing
- }
- return nil
- }
- func doesConfigDependOnNamespace(cfg *esv1.DelineaProvider) bool {
- if cfg.ClientID.SecretRef != nil && cfg.ClientID.SecretRef.Namespace == nil {
- return true
- }
- if cfg.ClientSecret.SecretRef != nil && cfg.ClientSecret.SecretRef.Namespace == nil {
- return true
- }
- return false
- }
- func getConfig(store esv1.GenericStore) (*esv1.DelineaProvider, error) {
- if store == nil {
- return nil, errMissingStore
- }
- storeSpec := store.GetSpec()
- if storeSpec == nil || storeSpec.Provider == nil || storeSpec.Provider.Delinea == nil {
- return nil, errInvalidSpec
- }
- cfg := storeSpec.Provider.Delinea
- if cfg.Tenant == "" {
- return nil, errEmptyTenant
- }
- if cfg.ClientID == nil {
- return nil, errEmptyClientID
- }
- if cfg.ClientSecret == nil {
- return nil, errEmptyClientSecret
- }
- err := validateStoreSecretRef(store, cfg.ClientID)
- if err != nil {
- return nil, err
- }
- err = validateStoreSecretRef(store, cfg.ClientSecret)
- if err != nil {
- return nil, err
- }
- return cfg, nil
- }
- // ValidateStore validates the Delinea SecretStore configuration.
- func (p *Provider) ValidateStore(store esv1.GenericStore) (admission.Warnings, error) {
- _, err := getConfig(store)
- return nil, err
- }
- func init() {
- esv1.Register(&Provider{}, &esv1.SecretStoreProvider{
- Delinea: &esv1.DelineaProvider{},
- }, esv1.MaintenanceStatusMaintained)
- }
|