diff --git a/website/content/docs/internals/rotation.mdx b/website/content/docs/internals/rotation.mdx
index d997eacb56..5896d9c90c 100644
--- a/website/content/docs/internals/rotation.mdx
+++ b/website/content/docs/internals/rotation.mdx
@@ -54,20 +54,22 @@ for a few minutes enabling standby instances to do a periodic check for upgrades
This allows standby instances to update their keys and stay in-sync with the active Vault
without requiring operators to perform another unseal.
+The `rotate/config` endpoint is used to configure the number of operations or time interval
+between automatic rotations of the backend encryption key.
+
## NIST Rotation Guidance
Periodic rotation of the encryption keys is recommended, even in the absence of
compromise. Due to the nature of the AES-256-GCM encryption used, keys should be
rotated before approximately 232 encryptions have been performed, following
-the guidelines of NIST publication 800-38D. Operators can estimate the number
-of encryptions by summing the following:
+the guidelines of NIST publication 800-38D.
+
+As of Vault 1.7, Vault will automatically rotate the backend encryption key
+prior to reaching 232 encryption operations by default.
+
+Operators can estimate the number of encryptions by summing the following:
- The `vault.barrier.put` telemetry metric.
- The `vault.token.creation` metric where the `token_type` label is `batch`.
- The `merkle.flushDirty.num_pages` metric.
-- The WAL index.
-
-The simplest strategy may be to use those metrics to determine a frequency of
-rotation and make that part of the operational process. For example, if one
-determines that the estimated rate is 40 million operations per day, then
-rotating the key every three months is sufficient.
+- The WAL index.
\ No newline at end of file