Sriram Madapusi Vasudevan

Results 66 comments of Sriram Madapusi Vasudevan

sam deploy does support `--role-arn` https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-cli-command-reference-sam-deploy.html

Makes sense, in the meantime a workaround is setup the role_arn in a aws profile and pass in that profile during guided. sam deploy -g --profile role_profile

@jplock Makes sense. Thanks for clarifying.

agree with @keetonian comment, but will keep this open so that the an appropriate error message is thrown instead.

It was not explicitly added to the command collection as it was supposed to be an abstraction for `sam deploy --guided`, but it was always going to be something to...

sam build copies the source code to a separate location to provide more stability and isolation to the build process. There needs to be some though on how to handle...

This is the mechanism we have in place currently to change paths: https://github.com/awslabs/aws-sam-cli/blob/ee91629e289eaa634809e6d691ce701426bab318/samcli/local/docker/utils.py#L11 We look at the os.name, but clearly on windows it looks like you could be operating in...

Were you able to setup `sam local start-lamba` ? This would allow you to call into lambda locally.

As @smacintyre pointed out, yeah the intention behind the usage of the makefile was so that users can use it to adjust everything as required, before being picked up by...

Do you have wheel installed? if not `sam build --use-container` may be the best bet.