diff --git a/docs/router/configuration.mdx b/docs/router/configuration.mdx
index 13d53a30..8371a538 100644
--- a/docs/router/configuration.mdx
+++ b/docs/router/configuration.mdx
@@ -1077,7 +1077,7 @@ These rules apply to requests being made from the Router to all Subgraphs.
| Environment Variable | YAML | Required | Description | Default Value |
| ------------------------------------------ | ------------------------------------------ | --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------- |
| | persisted_operations | | The configuration for the persisted operations. | |
-| PERSISTED_OPERATIONS_DISABLED | persisted_operations.disabled | | When set to `true`, all requests using persisted operations will be blocked and the router will return an error response. | false |
+| PERSISTED_OPERATIONS_DISABLED | persisted_operations.disabled | | Disable persisted operations. | false |
| | persisted_operations.cache | | LRU cache for persisted operations. | |
| PERSISTED_OPERATIONS_CACHE_SIZE | persisted_operations.cache.size | | The size of the cache in SI unit. | "100MB" |
| | persisted_operations.storage | | The storage provider for persisted operation. Only one provider can be active. When no provider is specified, the router will fallback to the Cosmo CDN provider to download the persisted operations. | |
@@ -1865,6 +1865,9 @@ The configuration for the security. The security is used to configure the securi
| SECURITY_BLOCK_NON_PERSISTED_OPERATIONS | block_non_persisted_operations | | Block non-persisted Operations. | |
| SECURITY_BLOCK_NON_PERSISTED_OPERATIONS_ENABLED | block_non_persisted_operations.enabled | | If the value is true, the non-persisted operations are blocked. | false |
| SECURITY_BLOCK_NON_PERSISTED_OPERATIONS_CONDITION | block_non_persisted_operations.condition | | The [expression](/router/configuration/template-expressions) to evaluate if the operation should be blocked. | |
+| SECURITY_BLOCK_PERSISTED_OPERATIONS | block_persisted_operations | | Block persisted Operations. | |
+| SECURITY_BLOCK_PERSISTED_OPERATIONS_ENABLED | block_persisted_operations.enabled | | If the value is true, the persisted operations are blocked. | false |
+| SECURITY_BLOCK_PERSISTED_OPERATIONS_CONDITION | block_persisted_operations.condition | | The [expression](/router/configuration/template-expressions) to evaluate if the operation should be blocked. | |
| | complexity_calculation_cache | | Complexity Cache configuration | |
| | complexity_limits | | Complexity limits configuration | |
| | parser_limits.approximate_depth_limit | | The approximate cumulative depth limit of a query, including fragments. Set to 0 to disable. | 200 |
@@ -1885,6 +1888,8 @@ security:
enabled: false
block_non_persisted_operations:
enabled: false
+ block_persisted_operations:
+ enabled: false
complexity_calculation_cache: # This is for a local in-memory cache, to persist the calculation results
enabled: true
size: 1024