Adnan Yaqoob
Results
2
comments of
Adnan Yaqoob
> ```yaml > AWSTemplateFormatVersion: '2010-09-09' > Transform: AWS::Serverless-2016-10-31 > Resources: > SomeFunction: > Type: AWS::Serverless::Function > Properties: > CodeUri: some-function/ > Handler: index.handler > Runtime: nodejs8.10 > Environment: > Variables:...
I think one fo the option is, you can set the env variables and then use the variable while executing the command. Or create a shell script wrapper which can...