Gotta look at your monthly bill every day. I've been wondering about the question of "where did the web go?" and how even technically savvy people have given up on blogging for behavioral sinks like Medium. Part of the story is that $50 a month dedis have given way to the "free" plan on AWS or a system that costs $10 a month to run if you're not successful but has no upper bound on the bills if you are successful. So…
Why do small teams keep getting wrecked by AWS bills?
11–19 of 19 posts
Re: Why do small teams keep getting wrecked by AWS bills?
#12They look at code on stackoverflow and the web that initializes the SDK resources that have you explicitly put the access key and secret key in code. For instance, the correct way to initialize the s3 client in Python is s3 = boto3.client('s3') The SDK will automatically get the credentials that are configured locally within your environment or the IAM role attached to your Lambda, EC2 instance, Docker (ECS, EKS) con…
Re: Why do small teams keep getting wrecked by AWS bills?
#13One of the best things you can do is enable AWS’s free Cost Anomaly Detector. I like getting pinged when something substantial changes.
Re: Why do small teams keep getting wrecked by AWS bills?
#14https://old.reddit.com/r/aws/comments/1jupura/just_got_compr... - this post you're referring to?
Re: Why do small teams keep getting wrecked by AWS bills?
#15Re: Why do small teams keep getting wrecked by AWS bills?
#16Because AWS doesn't have out-of-the-box costs killswitches.
Re: Why do small teams keep getting wrecked by AWS bills?
#17Best way to defeat competition is to make sure they never get out of the gate
Re: Why do small teams keep getting wrecked by AWS bills?
#18We’re not since cost controls are secondary to building features.
Re: Why do small teams keep getting wrecked by AWS bills?
#19One of the best things you can do is enable AWS’s free Cost Anomaly Detector. I like getting pinged when something substantial changes.
yeah cost anomaly detector is underrated. do you usually set custom thresholds or just let it use the defaults?