diff --git a/docs/images/integrations/aws/integrations-aws-secret-manager-create.png b/docs/images/integrations/aws/integrations-aws-secret-manager-create.png index 21f2213ef..e43cfbf9e 100644 Binary files a/docs/images/integrations/aws/integrations-aws-secret-manager-create.png and b/docs/images/integrations/aws/integrations-aws-secret-manager-create.png differ diff --git a/docs/integrations/cloud/aws-secret-manager.mdx b/docs/integrations/cloud/aws-secret-manager.mdx index db95c8308..9b3a8a2f8 100644 --- a/docs/integrations/cloud/aws-secret-manager.mdx +++ b/docs/integrations/cloud/aws-secret-manager.mdx @@ -72,6 +72,9 @@ Prerequisites: The region that you want to integrate with in AWS Secrets Manager. + + How you want the integration to map the secrets. The selected value could be either one to one or one to many. + The secret name/path in AWS into which you want to sync the secrets from Infisical. diff --git a/frontend/src/pages/integrations/aws-secret-manager/create.tsx b/frontend/src/pages/integrations/aws-secret-manager/create.tsx index 3e61baf79..2c04702e1 100644 --- a/frontend/src/pages/integrations/aws-secret-manager/create.tsx +++ b/frontend/src/pages/integrations/aws-secret-manager/create.tsx @@ -73,11 +73,11 @@ const awsRegions = [ const mappingBehaviors = [ { - label: "Many to One - secrets will be mapped to one AWS Secret", + label: "Many to One (All Infisical secrets will be mapped to a single AWS secret)", value: IntegrationMappingBehavior.MANY_TO_ONE }, { - label: "One to One - secrets will be mapped to individual AWS secrets", + label: "One to One - (Each Infisical secret will be mapped to its own AWS secret)", value: IntegrationMappingBehavior.ONE_TO_ONE } ]; @@ -277,10 +277,14 @@ export default function AWSSecretManagerCreateIntegrationPage() { onValueChange={(val) => { setSelectedMappingBehavior(val as IntegrationMappingBehavior); }} - className="w-full border border-mineshaft-500" + className="w-full border border-mineshaft-500 text-left" > {mappingBehaviors.map((option) => ( - + {option.label} ))}