Skip to content

AWS CDK to create a CloudFront distribution with a request Lambda to allow single use signed URL file downloads. Each file is tracked by an identifier which is stored in a DynamoDB database. Each request will check the identifier against values stored in the database. If the identifier is found the file process continues and the files is receive…

License

aws-samples/single-use-signed-url

Single Use SignedURL

AWS CDK to create a CloudFront distribution with a request Lambda to allow single use signed URL file downloads. Each file is tracked by an identifier which is stored in a DynamoDB database. Each request will check the identifier against values stored in the database. If the identifier is found the file process continues and the files is received, the id is then removed from the database. If the identifier is not found the system will perform a 302 redirect to a specified URL.

Architecture

Architecture

Requirements

  • A CloudFront Key Pair
  • The CloudFront Key Pair private key PEM file
  • AWS CDK Toolkit
  • CloudFront Triggers for Lambda Functions must execute in US East (N. Virginia) Region see requirements doc

Setup

  1. Create a CloudFront Key Pair (Root Account required). You can configure your CloudFront key pair through the Security Credentials page in the IAM console. Make sure you download your private key, and make a note of the key pair ID listed in the AWS Management Console.
  2. Next we will store the private key file (PEM) in Secrets Manager.
    • First store a new secret
    • Select "Other type of secrets"
    • Select "Plaintext"
    • Replace the entire contents of the edit box with the entire contents of the private key PEM file
    • Enter a secret name (SignedURLPem is used in this sample)
    • Save the secret
  3. Edit the cdk.json file and update the following values:
    • UUID - A unique string value used in bucket creation and service linking. This value must be unique across all AWS customers. It is suggested to generate a UUID for this value.
    • keyPairId - The Id of the CloudFront Key Pair
    • secretName - The name of the secrets manager value that holds the PEM file used to sign URLs
    • region - The region your DynamoDB and parameter store are located in. Due to CloudFront Edge Lambda requirement to execute in us-east-1 this value is required to execute the calls to other services in another region.
  4. From a terminal window at the root directory of this project do cdk synth
  5. From a terminal window at the root directory of this project do cdk deploy
  6. Once the deployment is complete the terminal window will display outputs of the deployment. One of the outputs will be CreateSignedURLEndpoint, navigating to this endpoint will display a web page used to generate single use signed URLS.
    • Click the Generate Single SignedURL button on this page to generate a signed url with the given sample helloworld.html sample file.
      Generate Web Page
    • Click the Open URL button to display the file
      Hello World Web Page
    • Once the file is displayed try refreshing to the page and notice Invalid File is now displayed.
      Invalid Web Page

Resource Cleanup

  1. From a terminal window at the root directory of this project do cdk destroy
    • The cdk destroy command will sometimes fail due to the CloudFrontViewRequest function currently being use by CloudFront. There can be a long wait period while the CloudFront resources are cleaned up.
    • If a failure occurs log into the AWS console and goto the CloudFormation console and manually delete the stack. It is recommended to check the option to retain the CloudFrontViewRequest function and manually remove it later.
  2. Manually remove the two S3 buckets created which are given as outputs when you deploy.
    • The bucket names will begin with singleusesingedurl-

About

AWS CDK to create a CloudFront distribution with a request Lambda to allow single use signed URL file downloads. Each file is tracked by an identifier which is stored in a DynamoDB database. Each request will check the identifier against values stored in the database. If the identifier is found the file process continues and the files is receive…

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published