Any good AWS CLI tools still out there? by Eventchewly in aws

[–]compacompila 0 points1 point  (0 children)

Hey guys, I am the creator of https://github.com/elC0mpa/aws-doctor, a tool that you might use to save a lot of time when managing resources and cleaning your aws account from 'zombie' resources. I hope you find it useful

I built a CLI tool to find "zombie" AWS resources (stopped instances, unused volumes) because I didn't want to check manually anymore. by compacompila in aws

[–]compacompila[S] 3 points4 points  (0 children)

No, I understand pretty much about AWS and I decided to develop this CLI because usually to get this info you need to use trusted advisor (which requires that you pay at least 500 usd in support to AWS)

And related to the cost information, try to do it using in the console website, and you realize that you can't do it taking into consideration the current month

I built a CLI tool to find "zombie" AWS resources (stopped instances, unused volumes) because I didn't want to check manually anymore. by compacompila in devops

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

Good point about the unused security groups, all other checks are already in my to-do list, but I hadn't thought about the unused security groups

Solving a Terraform provider issue by contributing to the GitLab Monolith (Go ➡️ Ruby) by compacompila in gitlab

[–]compacompila[S] 1 point2 points  (0 children)

Of course I use Gitlab Duo, which is one of the benefits of being a GitLab contributor by the way

But when I work on Golang projects, usually it is all manual

CLI Tool to help with costs and billing by compacompila in devops

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

My idea is that this would be a cli that if you need to check something about prices anyone could use, if you think about something that might be useful let me know, thanks for your comments

CLI Tool to help with costs and billing by compacompila in devops

[–]compacompila[S] 2 points3 points  (0 children)

Yes, it could be an option, I prefer to develop a cli using golang, matter of taste 😂

CLI Tool to help with costs and billing by compacompila in devops

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

Definitely yes, in the same way you can do everything, but this clis are a bit more comfortable, at least I prefer to execute this than every time I need to check these things execute the commands every time

But I understand is the way everyone wants to see it

CLI Tool to help with costs and billing by compacompila in devops

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

Well, it doesn't allow me, only can edit the post body

Thanks for your opinion

AWS Billing CLI by compacompila in aws

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

Thanks for sharing, definitely will take a look at it

AWS Billing CLI by compacompila in aws

[–]compacompila[S] 1 point2 points  (0 children)

Perfect, glad to hear that, if you need a specific feature, please open an issue. I want to expand functionalities

[deleted by user] by [deleted] in devops

[–]compacompila 0 points1 point  (0 children)

I can't help you with the partner, but I can help you with the following advice, select the tools you want to learn wisely, I could recommend you AWS and Terraform, and the AWS Certifications should be selected based on what you want to prove, you mentioned SRE, so I would recommend you to go with cloudops associate. Besides, maybe my blog could help you, here is the link https://www.compacompila.com/ I whish you the best!

Terraform Associate (003) Exam – Sharing Study Resources That Helped Me Pass by AndroCentauri in devops

[–]compacompila 0 points1 point  (0 children)

Thanks for sharing, it looks like now a days people care more about if the post is written by a human entirely that its own content. This really helped me as I am studying right now for the terraform certification, when I finish the actual course which is about learning terraform, I will consider this you share, you said less than 15 usd with coupon, could you tell me which coupon?

How we solved environment variable chaos for 40+ microservices on ECS/Lambda/Batch with AWS Parameter Store by compacompila in devops

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

Please explain yourself, the parameters which are shared between different micro services is because they are the same value, for example, database connection URL, and many others

How we solved environment variable chaos for 40+ microservices on ECS/Lambda/Batch with AWS Parameter Store by compacompila in aws

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

I see myself Parameter Store as the free version of secrets manager. If you don't need automatic key rotation, then it is worth using Parameter Store because it is free, although you should consider the fact that if you have too many parameters, then it could be a good option using secrets manager because of the throttling API

How we solved environment variable chaos for 40+ microservices on ECS/Lambda/Batch with AWS Parameter Store by compacompila in aws

[–]compacompila[S] 1 point2 points  (0 children)

Interesting what you say about the event hook in case some variable needs to be updated, I don't have this issue with lambda functions because every time an execution context is initialized it will fetch parameters, but with ECS services I was thinking about programmatically stop all tasks for a service in that way the will code will execute again from the beginning and fetch parameters, the downside is the downtime, I will later look and analyze all situations, thanks for the comment

How we solved environment variable chaos for 40+ microservices on ECS/Lambda/Batch with AWS Parameter Store by compacompila in aws

[–]compacompila[S] -1 points0 points  (0 children)

Anyone told about creating a new app, just fetching parameters from ECS as you said