kes
Version:
Making deployment to AWS using CloudFormation easier and fun
32 lines (27 loc) • 793 B
YAML
default:
stackName: my-kes-project
capabilities:
- CAPABILITY_NAMED_IAM
lambdas:
func1: # function name must match the lambda folder name in build directory
handler: func1.handler
timeout: 300
s3Source:
bucket: devseed-kes-deployment
key: example_lambdas/custom.zip
func2: # function name must match the lambda folder name in build directory
handler: func2.handler
timeout: 300
envs:
CUSTOM_ENV: myValue
s3Source:
bucket: devseed-kes-deployment
key: example_lambdas/lambda.zip
func3:
handler: func3.handler
timeout: 300
s3Source:
bucket: devseed-kes-deployment
key: example_lambdas/lambda.zip
kesTestDeployment:
stackName: kes-test-project-prod