AWSResco
AWSResco copied to clipboard
Terraform for s3 bucket and deployments?
@ckelner - I'm interpreting this issue as a question to talk about deployment options. I did a little spike of this for a static website I was prototyping. I use the following workflow.
Github webhook->aws API gateway->lambda function->DL source->upload source to s3
It's a bit complicated, but the deployment process is a breeze (similar to Heroku - just git push
and profit).
If you want to check out the source, look here: https://github.com/ryansydnor/bb
Awesome, thanks @ryansydnor, and you interpreted correctly! I will take a look.
@ckelner - came across this repo which documents the process quite well. Might be helpful! https://github.com/taylorking/LambdaDeploy
@ckelner - I automated what I described above using cloudformation and some custom scripts. Check it out: https://github.com/ryansydnor/hugo-cd
Hopefully you can leverage it :)