Bryson Tyrrell

Results 46 comments of Bryson Tyrrell

I would like to voice that doing this would ease a lot of deployment headaches. My expectation is that this key value would abstract away the `AWS::Lambda::Version` objects and handle...

Ideally, for me, I'd like SAM to handle the bucket content and not any of the configuration. This has use cases past just static web content. Something fairly simple such...

@zeroastro I have an example of how to do this in the Swagger doc on my GitHub: https://github.com/brysontyrrell/Serverless-Examples/blob/master/API-Gateway-Integrated-SQS-Queue/template.yaml ```yaml AWSTemplateFormatVersion: 2010-09-09 Transform: AWS::Serverless-2016-10-31 Description: >- Create an API Gateway integrated...

I am also having to ditch SAM for a current project due to requiring a client certificate. Defining and managing raw API Gateway CloudFormation resources and managing deployments via CloudFormation/CodePipeline...

Plus one from me on this. I'm breaking up a stack currently and taking a set of my endpoints off an API Gateway and moving them behind an ALB. Based...

👋 it looks like this has been implemented? I have `CacellationReasons` in the error response now (was writing a sample for someone else and saw it there): ```json { "Error":...

@jlhood I'd like to +1 on configuring logging as a property of the `AWS::Serverless::Function`. ```yaml MyFunction: Type: AWS::Serverless::Function Properties: Logging: LogGroup: !Ref MyLogGroup # Optional: use an existing CloudWatch Log...

👍 to @liszi - I'm exploring CodeArtifact for private packages and trying to reconcile local builds using containers with this. A way to leverage `pip.conf` would be preferable. Requiring the...

@timbedard the auth tokens can go up to 12 hours so not too concerned there. More an issue of guidance to my devs on reusing tokens and not grabbing new...