this post was submitted on 27 Sep 2023
73 points (89.2% liked)

Technology

34125 readers
251 users here now

This is the official technology community of Lemmy.ml for all news related to creation and use of technology, and to facilitate civil, meaningful discussion around it.


Ask in DM before posting product reviews or ads. All such posts otherwise are subject to removal.


Rules:

1: All Lemmy rules apply

2: Do not post low effort posts

3: NEVER post naziped*gore stuff

4: Always post article URLs or their archived version URLs as sources, NOT screenshots. Help the blind users.

5: personal rants of Big Tech CEOs like Elon Musk are unwelcome (does not include posts about their companies affecting wide range of people)

6: no advertisement posts unless verified as legitimate and non-exploitative/non-consumerist

7: crypto related posts, unless essential, are disallowed

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 16 points 11 months ago* (last edited 11 months ago) (2 children)

You can define your whole cloud infra as code so you don't have to manually maintain hundreds, sometimes thousands of resources manually. My work would be basically impossible without it, or the DevOps team shouldn't consist of 5 peope but 20. It's a descriptive language where you define the end result you want to see and Terraform transforms your code to actual API calls to AWS/GCP/Azure. Like this

resource database MyAwesomeDB {
engine = mssql
version = 1.1
backup, initial db, master pw etcetc. }

It's incredible useful where you have 50+ microservices, 10+ db instances, load balancers, gateways, auto scaling rules, object storage, nosql, queues, countless firewall and routing rules, notifications and observability systems. And that was just dev. Then you have test, staging, prod, plus multi-region on top of that. And of course ephemeral environments fired up for every PR so the dev can test their shit without messing everything up. You end up easily managing a couple of thousands of cloud resources.

[–] [email protected] 6 points 11 months ago

holy shit I'm so glad I got out of I.T.
What the fuck is any of that

[–] [email protected] 5 points 11 months ago

Thanks for the summary! I figured that out after several steps of googling. It's kinda nuts that they wouldn't want to put any of that on their page though. Even terraform isn't very clear about it.

Hope they end up doing that if they slowly diverge from the original tool