diff --git a/docs/integrations/secret-syncs/aws-parameter-store.mdx b/docs/integrations/secret-syncs/aws-parameter-store.mdx
index abc52d971..32fd0c12f 100644
--- a/docs/integrations/secret-syncs/aws-parameter-store.mdx
+++ b/docs/integrations/secret-syncs/aws-parameter-store.mdx
@@ -148,3 +148,11 @@ description: "Learn how to configure an AWS Parameter Store Sync for Infisical."
```
+
+## FAQ
+
+
+
+ The path is required and will be prepended to the key schema. For example, if you have a path of `/demo/path/` and a key schema of `INFISICAL_{{secretKey}}`, then the result will be `/demo/path/INFISICAL_{{secretKey}}`.
+
+
diff --git a/frontend/src/components/secret-syncs/forms/SecretSyncDestinationFields/AwsParameterStoreSyncFields.tsx b/frontend/src/components/secret-syncs/forms/SecretSyncDestinationFields/AwsParameterStoreSyncFields.tsx
index 47975ca37..b471b66a9 100644
--- a/frontend/src/components/secret-syncs/forms/SecretSyncDestinationFields/AwsParameterStoreSyncFields.tsx
+++ b/frontend/src/components/secret-syncs/forms/SecretSyncDestinationFields/AwsParameterStoreSyncFields.tsx
@@ -30,7 +30,29 @@ export const AwsParameterStoreSyncFields = () => {
/>
(
-
+
+ The path is required and will be prepended to the key schema. For example, if you
+ have a path of{" "}
+
+ /demo/path/
+ {" "}
+ and a key schema of{" "}
+
+ INFISICAL_{"{{secretKey}}"}
+
+ , then the result will be{" "}
+
+ /demo/path/INFISICAL_{"{{secretKey}}"}
+
+ >
+ }
+ tooltipClassName="max-w-lg"
+ >
)}