Skip to content

sample deployment scenario with localstack and terraform / aws community day 2021

Notifications You must be signed in to change notification settings

ozgend/localstack-awscd

Repository files navigation

deployment with localstack & iac

aws@localhost: localstack + iac

sample deployment scenario with localstack and terraform / aws community day 2021


bootstrap localstack

$ (cd localstack-compose && docker-compose up)

initialize infrastructure

$ (cd infrastructure && terraform init && terraform apply -auto-approve)

build & publish lambda assets

$ (cd src && ./pack.sh APP-lambda VERSION)

deploy lambda

$ (cd src/.deploy/APP-lambda && terraform init)
$ (cd src/.deploy/APP-lambda && terraform apply -var="lambda_version=VERSION" -auto-approve)

destroy

$ (cd src/.deploy/APP-lambda && terraform destroy)
$ (cd infrastructure && terraform destroy)

demo

initialization

chmod +x ./_init.sh && ./_init.sh

lambda deployments

  • query-lambda
cli
pack (cd src && ./pack.sh query-lambda v1)
deploy (cd src/.deploy/query-lambda && terraform apply -var="lambda_version=v1" -auto-approve)
request curl http:https://localhost:4566/restapis/[API_ID]/test/_user_request_/HASH
logs aws --endpoint-url=http:https://localhost:4566 logs tail /aws/lambda/query-lambda --follow
  • consumer-lambda
cli
pack (cd src && ./pack.sh consumer-lambda v1)
deploy (cd src/.deploy/consumer-lambda && terraform apply -var="lambda_version=v1" -auto-approve)
logs aws --endpoint-url=http:https://localhost:4566 logs tail /aws/lambda/consumer-lambda --follow