AWS Security ChangesHomeSearch

AWS firehose medium security documentation change

Service: firehose · 2025-07-25 · Security-related medium

File: firehose/latest/dev/secrets-manager-whats-secret.md

Summary

Changed secret key names from camelCase to snake_case (e.g., 'privateKey' to 'private_key')

Security assessment

Corrects secret parameter names to match expected formats, preventing misconfiguration that could lead to failed secret retrieval. This addresses a potential security risk where improper configuration might expose credentials.

Diff

diff --git a/firehose/latest/dev/secrets-manager-whats-secret.md b/firehose/latest/dev/secrets-manager-whats-secret.md
index 90b8bb49b..579040775 100644
--- a//firehose/latest/dev/secrets-manager-whats-secret.md
+++ b//firehose/latest/dev/secrets-manager-whats-secret.md
@@ -39,2 +39,2 @@ For each destination, you must specify the secret key-value pair in the correct
-        "privateKey":  "<snowflake-private-key>", // without the beginning and ending private key, remove all spaces and newlines
-        "privateKeyPassphrase":  "<snowflake-private-key-passphrase>" // optional
+        "private_key":  "<snowflake-private-key>", // without the beginning and ending private key, remove all spaces and newlines
+        "key_passphrase":  "<snowflake-private-key-passphrase>" // optional