Skip to content

Commit

Permalink
feat(secret_manager): add json type with subtype (#1882)
Browse files Browse the repository at this point in the history
  • Loading branch information
scaleway-bot authored Oct 20, 2023
1 parent 38c3d84 commit 58aec66
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions api/secret/v1alpha1/secret_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 58aec66

Please sign in to comment.