You've already forked golang-saas-starter-kit
mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-06-29 00:52:03 +02:00
Working on cleaning up deployment code to add support for deploying a lambda function to ship logs from AWS cloudwatch to datadog. WIP
12 lines
257 B
Go
12 lines
257 B
Go
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"`
|
|
|
|
}
|
|
|