OpenTofu’s Slack workspace
Bro… why do opensource projects love proprietary collaboration platforms so much?
OpenTofu is mostly getting users from the corporate world. My work is on Slack and we’re moving to OT. The lowest-friction for me as an OT-when-at-work user is to add another Slack. (I’d personally rather that they used an open platform. But it’s easy for me to see why they didn’t.)
What is a good open platform for the tech business? My corp want to go full Teams, which sucks even more than Slack. At least most tooling has a Slack integration of some sort.
mattermost?
Based on the name I thought this was gonna be some platform to make homemade tofu more accessible to people and I was thinking “it’s really not all that hard to make, that’s kind of silly”
going after big nasoya
It’s traditional in open source to have really terrible names.
Not even the first time tofu has been used, I know it as the key validation scheme “trust on first use”
I felt completely lost. What is Terraform?
Terraform is a tool that codifies cloud APIs into declarative configuration files to automate infrastructure provisioning and management
Not exactly sure what that means, but that may help someone!
Terraform is part of a movement called “Infrastructure as Code” (IaC) which allows engineers to define their cloud infrastructure using code.
This is extremely useful as it allows you to:
-
version infrastructure changes
-
automate resource and configuration creation and management
-
have reproducible environments (think production and staging envs, or deploying a new production env to another datacenter)
Terraform (and OpenTofu) is different to most IaC project as it is agnostic of cloud providers: you can use it to deploy infrastructure to multiple providers, where their competitors are limited to their own platform (I think of AWS’s Cloud Development Kit)
-