diff --git a/backend/src/services/org/org-schema.ts b/backend/src/services/org/org-schema.ts
index 8df698230..ef49d8178 100644
--- a/backend/src/services/org/org-schema.ts
+++ b/backend/src/services/org/org-schema.ts
@@ -13,8 +13,8 @@ export const sanitizedOrganizationSchema = OrganizationsSchema.pick({
defaultMembershipRole: true,
enforceMfa: true,
selectedMfaMethod: true,
+ allowSecretSharingOutsideOrganization: true,
shouldUseNewPrivilegeSystem: true,
privilegeUpgradeInitiatedByUsername: true,
- privilegeUpgradeInitiatedAt: true,
- allowSecretSharingOutsideOrganization: true
+ privilegeUpgradeInitiatedAt: true
});
diff --git a/docs/integrations/platforms/kubernetes/infisical-dynamic-secret-crd.mdx b/docs/integrations/platforms/kubernetes/infisical-dynamic-secret-crd.mdx
index 6e99d4e13..82e60af7f 100644
--- a/docs/integrations/platforms/kubernetes/infisical-dynamic-secret-crd.mdx
+++ b/docs/integrations/platforms/kubernetes/infisical-dynamic-secret-crd.mdx
@@ -126,19 +126,19 @@ When `hostAPI` is not defined the operator fetches secrets from Infisical Cloud.
The `leaseTTL` is a string-formatted duration that defines the time the lease should last for the dynamic secret.
- The format of the field is `[duration][unit]` where `duration` is a number and `unit` is a string representing the unit of time.
+ The format of the field is `[duration][unit]` where `duration` is a number and `unit` is a string representing the unit of time.
- The following units are supported:
+ The following units are supported:
- - `s` for seconds (must be at least 5 seconds)
- - `m` for minutes
- - `h` for hours
- - `d` for days
+ - `s` for seconds (must be at least 5 seconds)
+ - `m` for minutes
+ - `h` for hours
+ - `d` for days
-
- The lease duration at most be 1 day (24 hours). And the TTL must be less than the max TTL defined on the dynamic secret.
-
-
+
+ The lease duration at most be 1 day (24 hours). And the TTL must be less than the max TTL defined on the dynamic secret.
+
+
The `managedSecretReference` field is used to define the Kubernetes secret where the dynamic secret lease should be stored. The required fields are `secretName` and `secretNamespace`.