Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Sign requests to AWS with their Version 4 Signature algorithm. Uses only `crypto.subtle`

License

Notifications You must be signed in to change notification settings

change-engine/aws-signature-v4-subtle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aws-signature-v4-subtle

Sign requests to AWS with their Version 4 Signature algorithm. Uses only crypto.subtle.

Usage

To retrieve a Secret from Secrets Manager:

const response = await fetch(
  ...(await AwsToFetch(
    {
      AWS_REGION: 'us-west-1',
      AWS_ACCESS_KEY_ID: '<Access Key ID>',
      AWS_SECRET_ACCESS_KEY: '<Access Key Secret>',
    },
    'secretsmanager',
    'POST',
    {
      'content-type': 'application/x-amz-json-1.1',
      'X-Amz-Target': 'secretsmanager.GetSecretValue',
    },
    JSON.stringify({
      SecretId: `SLACK_SIGNING_SECRET_${accountId}`,
    }),
  )),
);
if (!response.ok) throw new Error('Error talking to AWS');
const secret = (await response.json<{ SecretString: string }>()).SecretString;

About

Sign requests to AWS with their Version 4 Signature algorithm. Uses only `crypto.subtle`

Resources

License

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •