Skip to content

Very Simple Go Script that can be used to deploy n number of functions to aws asynchronously

Notifications You must be signed in to change notification settings

onetwentyseven-dev/deploy-functions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AWS Lambda Function Async Deployer

This is a very simple Golang script that utilizes V2 of the AWS Golang SDK and Golang's Go Routines to Asynchrounsly upload zip files to AWS Lambda Functions.

This script takes a total of two (2) args.

  1. [Required] Is the directory where the zip archives reside
  2. [Optional] Is the format string that will be passed the name of the zip file with the .zip extension trimmed off. Use this if the name of the function being updated has additional identifiers associated with it (i.e. The zip is called animals and the lambda function name is animals-handler then this args would be %s-handler)

Executing without a format string

$ deploy-functions ./dist

Executing with a format string

$ deploy-functions ./dist %s-handler

About

Very Simple Go Script that can be used to deploy n number of functions to aws asynchronously

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages