Jacob Fuss

Results 149 comments of Jacob Fuss

@gccalvin When you provide `--docker-network` this is the docker network that the container will attach too when the local lambda function is invoked. `sam local start-api` runs on the localhost...

@gccalvin In my experience with Docker, the networking for it is super confusing. > I found [this](https://stackoverflow.com/questions/48546124/what-is-linux-equivalent-of-host-docker-internal) I would be cautious. Unless Docker has that specifically documented, it can change...

The package command is not tied to only resources that require the `Transform: AWS::Serverless-2016-10-31`. I can define my template with `AWS::Lambda::Function`s instead and still want package to do it's job....

I think it is a reasonable thing for `deploy` to do. Or even further in the workflow, so it can be caught during testing (its kind of strange we always...

We already log what is being mounted and where in the output: https://github.com/awslabs/aws-sam-cli/blob/develop/samcli/local/docker/container.py#L87 Is that not enough?

Closing this due to age. As stated above, we do say what directory we are mounting. I recall docker not giving us anyway to know if the mount was successful,...

@gdw2 Thanks for the report, this is super interesting. Right now, we are assuming that resources have a `Type` property [1]. Looks like your custom resource does not have this,...

@buildbreakdo What do you mean by pretty print? Can you give us an example to help us understand what you are looking for in the output.

@aniecki You can call Lambda's locally through the `sam local start-lambda` command. You can find some details on how to configure boto3 (other SDK's follow similar patterns) [here](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-using-automated-tests.html). If you...

Also it is not clear to me (can't remember) the reason why we don't add the [FunctionName to the env var](https://github.com/awslabs/aws-sam-cli/blob/develop/samcli/local/lambdafn/env_vars.py#L162). This could be due to we don't support or...