1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-06-29 00:52:03 +02:00

issue#8 datadog ECS logs

Working on cleaning up deployment code to add support for deploying a
lambda function to ship logs from AWS cloudwatch to datadog. WIP
This commit is contained in:
Lee Brown
2019-08-08 13:58:24 -08:00
parent 169ecf0b1c
commit 7cf95bb35e
7 changed files with 85 additions and 17 deletions

View File

@ -0,0 +1,11 @@
package cicd
// deployLambdaFuncRequest defines the details needed to deploy a function to AWS Lambda.
type deployLambdaFuncRequest struct {
EnableLambdaVPC bool `validate:"omitempty"`
FuncName string `validate:"required"`
}