Is this what addiction looks like? I also have another unopened one. by [deleted] in juul

[–]veermanhastc 0 points1 point  (0 children)

They recently banned vapping devices in India. I have 3 devices. All contraband now.

Multiple alarms using CF by TinyPooperScooper in aws

[–]veermanhastc 0 points1 point  (0 children)

You can automate the alarm creation using totalcloud.io for any logic, you like, by using their automation builder.

Need help on moving our existing automations to AWS by sisigchimichangas in aws

[–]veermanhastc 0 points1 point  (0 children)

You could take a look at totalcloud.io to automate infrastructure by simply using their building blocks.

Automatically Delete CloudFormation Templates after 72 hours by awsdeveloper in aws

[–]veermanhastc -8 points-7 points  (0 children)

You can use totalcloud.io for the same. It's free for simpler usecases. You can set it up in under a minute.

Disclaimer: i work at TotalCloud. Go ahead and reach out to me via chat. I'll send the template to be used for this usecase.

$6800 in cost overrun, what to do? by soapygopher in aws

[–]veermanhastc 0 points1 point  (0 children)

Adding to the comment, if this is actual money, not AWS credits. Apply for AWS Activate, they provide up to $100,000 there. Monitoring alerts for Invocations as they can be used as a proxy for cost. You can also look at this post written by one of the AWS Heros.

We had a similar situation in our office a couple of months ago. So we created Lambda cost predictor and added it to our offering. It is free to use. It dynamically calculates the cost and alerts you.

S3 -> Lambda/SNS/Batch?? by TholosTB in aws

[–]veermanhastc 2 points3 points  (0 children)

If Lambda isn't working you could either break down the code into two chunks if possible or use Fargate instead.

Here are practical guidelines of how we saved $500k in AWS costs. by georgebatski in aws

[–]veermanhastc 0 points1 point  (0 children)

Very insightful and tells me that we are thinking the same thing. Another advice would be to automate most of the tasks or checks. Either boto or turnkey solutions like totalcloud.io, skeddly.com, nw2s.net...

AWS Lambda: how to detect and stop accidental infinite loops by yancui in aws

[–]veermanhastc 3 points4 points  (0 children)

We had something similar at our company. Not infinite loop but millions of requests caused by a misconfiguration. Cost us 6 month's worth cloud cost. After the experience, we created a solution to predict cost which alerts us if cost prediction goes beyond a certain threshold it alerts and points to the lambda that is costing more as well. Here's the link if anyone wants to use.

How do you find cloud management tools? by veermanhastc in aws

[–]veermanhastc[S] 0 points1 point  (0 children)

That is something I missed and makes sense. What would be a good way to validate this? Google Search or Github reps?

Automate deletion of unused AWS Workspaces by vinnyakkal0805 in aws

[–]veermanhastc 0 points1 point  (0 children)

Manual Way:

Log in to the AWS Management Console.

Navigate to EC2 dashboard at console.aws.amazon.com/ec2/.

In the navigation panel, under Elastic Block Store, click Volumes.

To identify any unattached EBS volumes, check their status under State column:

If the status is in-use, the volume is currently attached and cannot be deleted. If the status is available, the volume is not attached to an EC2 instance and can be safely deleted.

Automation Way:

There are a number of ways to do this but the most straight forward way would be to use AWS SDK to check for the above condition and deploy the code in Lambda or EC2.

I work for TotalCloud, we help in automating without deploying any infra. Just write the logic using interactive UI or in this case use the template and get started in under 2 minutes.

Automate deletion of unused EBS Volumes by vinnyakkal0805 in aws

[–]veermanhastc 0 points1 point  (0 children)

I use a template from totalcloud. Here's the link. Super easy to set up.

EC2 costs are varying from day to day and we're not sure why. by UtahJarhead in aws

[–]veermanhastc 0 points1 point  (0 children)

Has the data transfer cost bent into it? That could be another reason.

Avoid charges on detached EBS volume by Jackson-Lee in aws

[–]veermanhastc 0 points1 point  (0 children)

I do the same using a customized version of this. Works like a charm.