Keeton Hodgson

Results 70 comments of Keeton Hodgson

@keenskelly @robermar2 Could you post a sample of a template that would result in the policy size exceeding the limit after multiple deployments? I wonder what the issue is for...

There are a few solutions to this problem. Like @christopheblin wrote, if you want one lambda to handle all of your API endpoints, you can use a `proxy` endpoint and...

How many endpoints does it take to hit this limit? #1102 will help address this issue by reducing the number of permissions that SAM creates by half, which should greatly...

It looks like the CFN [API Stage](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html) resource does not yet support adding a WAF, so I don't think SAM can connect a WAF to an API Gateway Stage yet....

It looks like there is a way to do this in CloudFormation. This requires more investigation still. It looks like you need to create a Regional WAF: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html Then associate...

@chrisoverzero you are correct, it looks like you can't get the arn of the stage: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html

Great idea! ---- ~~**Edit:** [CloudFormation documentation](https://docs.aws.amazon.com/en_us/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#cfn-sns-subscription-redrivepolicy) for the Sns Subscription resource states that `RedrivePolicy` is not supported in CloudFormation. We can add this feature once this property is supported.~~ ----...

Crossed out my comment that it's not supported in CloudFormation, it looks like we can go forward with this feature.

@made2591-eb We have passed this along to our product team for possible prioritization. Please +1 on the feature to help with prioritization.

Yes, you can access it from another template (either by exporting values or referencing outputs from nested stacks). However, you can't use any SAM features this way, so API events...