Skip to content

Commit

Permalink
fix(serverless): pass executor env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
wyvern8 committed Jul 5, 2018
1 parent ff0677d commit 248d5c2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/executors/ExecutorDockerServerless.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,12 @@ export class ExecutorDockerServerless extends ExecutorDocker {
SLS_APIGW_DOMAIN_SUFFIX: process.env.GTM_SLS_EXECUTOR_APIGW_DOMAIN_SUFFIX,
SLS_DEPLOYMENT_S3_BUCKET_PREFIX: process.env.GTM_SLS_EXECUTOR_DEPLOYMENT_S3_BUCKET_PREFIX,
SLS_HTTP_PROXY: process.env.GTM_SLS_EXECUTOR_HTTP_PROXY,
SLS_NO_PROXY: process.env.GTM_SLS_EXECUTOR_NO_PROXY
SLS_NO_PROXY: process.env.GTM_SLS_EXECUTOR_NO_PROXY,
SLS_VPC_SECURITY_GROUP_ID: process.env.GTM_SLS_EXECUTOR_VPC_SECURITY_GROUP_ID,
SLS_VPC_SUBNET_A: process.env.GTM_SLS_EXECUTOR_VPC_SUBNET_A,
SLS_VPC_SUBNET_B: process.env.GTM_SLS_EXECUTOR_VPC_SUBNET_B,
SLS_VPC_SUBNET_C: process.env.GTM_SLS_EXECUTOR_VPC_SUBNET_C,
SLS_AWS_KMS_KEY_ID: process.env.GTM_SLS_EXECUTOR_AWS_KMS_KEY_ID
},
validator: {
type: 'outputRegex',
Expand Down

0 comments on commit 248d5c2

Please sign in to comment.