After rotating the secret, there’s a propagation delay of up to 60 seconds.
The new secret must propagate through GC’s OAuth infrastructure. If your application retries immediately after rotation, it may hit a node still using the old secret cache. Wait 60 seconds after rotation before making the first token request.
Under SOC2, OAuth client secret rotation must occur at least quarterly.
Document the rotation in your change log: old secret revocation time, new secret activation time, and verification that the application successfully authenticates with the new secret. Auditors specifically check for evidence of regular credential rotation.
We once rotated the secret during peak hours and caused a 3-minute authentication outage.
The 60-second propagation delay, combined with our application’s aggressive retry-on-failure logic, triggered the GC rate limiter on the OAuth endpoint. We now schedule rotations during our maintenance window (Sunday 2 AM).