From dcd21883d1b212c589524e266a54dc208915d31e Mon Sep 17 00:00:00 2001 From: x032205 Date: Thu, 26 Jun 2025 17:02:21 -0400 Subject: [PATCH 1/2] Clarify relationship between path and key schema for AWS parameter store docs --- docs/integrations/secret-syncs/aws-parameter-store.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) 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}}`. + + From 2e256e4282c1223031955ae718a9f097a72aa4ca Mon Sep 17 00:00:00 2001 From: x032205 Date: Thu, 26 Jun 2025 18:14:48 -0400 Subject: [PATCH 2/2] Tooltip --- .../AwsParameterStoreSyncFields.tsx | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) 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" + > )}