TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Burrow is a globally distributed, serverless HTTP proxy

76 pointsby myzie10 months ago

3 comments

mlhpdx10 months ago
The amount of duplication in `main.tf` (copy&#x2F;pasta for each region) is shocking, but I&#x27;m not a Terraform user -- is that normal? It also seems problematic for re-use since not all accounts have those regions enabled. Perhaps using something like the below to discover enabled regions at deploy time would make it more &quot;consumable&quot; by other folks:<p><pre><code> aws account list-regions \ --region-opt-status-contains &quot;ENABLED&quot; &quot;ENABLED_BY_DEFAULT&quot; \ --no-paginate \ --query &quot;Regions[].RegionName&quot; \ --output text </code></pre> That&#x27;s the approach I&#x27;ve taken with SAM&#x2F;Cloudformation deployments[1].<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;mlhpdx&#x2F;email-origin&#x2F;blob&#x2F;main&#x2F;scripts&#x2F;deploy-region.sh">https:&#x2F;&#x2F;github.com&#x2F;mlhpdx&#x2F;email-origin&#x2F;blob&#x2F;main&#x2F;scripts&#x2F;dep...</a>
评论 #41103967 未加载
评论 #41104309 未加载
评论 #41105950 未加载
kjok10 months ago
Very cool. Is there a reason to choose AWS lambda over other tech (say Cloudflare workers)?
评论 #41103544 未加载
jftuga10 months ago
Cool idea. What was your initial use case for creating this?<p>Also, are the Function URLs publicly accessible? If so, what safe guards are there to prevent abuse?