0

I'm following along with Serverless Watermark using AWS Lambda Layers & FFmpeg - DevOpStar and I get stuck right at Deployment Key.

Where do I get my Deployment Key?

I've already created a bucket on AWS can't find a Key associated with it.

I am stuck here:

Deployment key

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
Jay
  • 185
  • 15

1 Answers1

0

In that particular tutorial, the DEPLOYMENT_KEY is simply referring to the name of the object to be stored in Amazon S3.

For objects in Amazon S3, the filename is referred to as the Key and it includes the full path, such as:

resources/aws-ffmpeg-serverless-convert/ffmpeg-1234.zip

I suspect that those lines in the MAKE file can be used as-supplied, without having to make any changes.

The $$RANDOM command will generate a random name to avoid clashes. See: Use $RANDOM in a makefile

Bottom line: You only need to change the DEPLOYMENT_BUCKET_NAME to a bucket that you created.

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470