From 58aec6621e73d91fb9a480a27ec121c7884c39b8 Mon Sep 17 00:00:00 2001 From: Scaleway Bot Date: Fri, 20 Oct 2023 11:11:36 +0200 Subject: [PATCH] feat(secret_manager): add json type with subtype (#1882) --- api/secret/v1alpha1/secret_sdk.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/secret/v1alpha1/secret_sdk.go b/api/secret/v1alpha1/secret_sdk.go index 491d32eea..9e24bd830 100644 --- a/api/secret/v1alpha1/secret_sdk.go +++ b/api/secret/v1alpha1/secret_sdk.go @@ -185,6 +185,8 @@ const ( SecretTypeOpaque = SecretType("opaque") // Certificates used by load balancers, the format must be PEM concatenated and contains exactly one PKCS8 private key and the certificate full chain containing all intermediates CA. SecretTypeCertificate = SecretType("certificate") + // Flat JSON that allows any number of first level key and a scalar type as a value (string, numeric, boolean). + SecretTypeKeyValue = SecretType("key_value") ) func (enum SecretType) String() string {