Files
grafana/pkg/storage/secret/encryption/data_key_model.go
Dana Axinte 0fccc01ebe SecretsManager: add data key store (#107396)
* SecretsManager: Add data key store

Co-authored-by: Michael Mandrus <michael.mandrus@grafana.com>
Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com>
Co-authored-by: Dana Axinte <53751979+dana-axinte@users.noreply.github.com>

* SecretsManager: Add wiring of data key store

Co-authored-by: Michael Mandrus <michael.mandrus@grafana.com>
Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com>
Co-authored-by: Dana Axinte <53751979+dana-axinte@users.noreply.github.com>

---------

Co-authored-by: Michael Mandrus <michael.mandrus@grafana.com>
Co-authored-by: Matheus Macabu <macabu@users.noreply.github.com>
2025-06-30 17:17:07 +01:00

20 lines
387 B
Go

package encryption
import (
"time"
"github.com/grafana/grafana/pkg/registry/apis/secret/encryption"
)
// SecretDataKey does not have a mirrored K8s resource
type SecretDataKey struct {
UID string
Active bool
Namespace string
Label string
Provider encryption.ProviderID
EncryptedData []byte
Created time.Time
Updated time.Time
}