6 ms·
You might want to look into Terraform [1], which works across multiple cloud vendors, with pluggable open-source "providers" facilitating the communication with
by JBerlinsky 7y ago
You might want to look into Terraform [1], which works across multiple cloud vendors, with pluggable open-source "providers" facilitating the communication with the backend cloud platform.
[1]: https://www.terraform.io/ https://www.terraform.io/
- LIV2 7y agoTerraform is great but if you want to change to a different cloud provider you pretty much have to rewrite everything
- eropple 7y agoTerraform is okay, if you don't value things like "loops that aren't an awful hack", but in 2019 Pulumi is significantly better and their cloud-agnostic implementation actually kinda works okay.
- ndarwincorn 7y agoWe should make an effort to redefine how we use 'infrastructure-as-code', because right now Pulumi/Troposphere/Azure PowerShell and Ansible/Terraform/etc. are indistinguishable when viewed that way, despite the former being much more useful. Infrastructure-as-verisonable-flat-configuration-files should not be thought of as infrastructure-as-code.
- LIV2 7y agoHaven't heard of Pulumi before your comment but will be sure to check it out now :)
- snlnspc 7y agoPulumi would be perfect if the community edition was simply self hosted without support vs free with a single user only. At a stingy small org, I have no hope of ever using it instead of simply installing Terraform when the starter edition excludes secrets management and the API.
- eropple 7y agoIt's a bit rocky and I've been filing bugs to help, but S3 state support is strictly no worse than Terraform's and supports secrets just fine.
- 0xEFF 7y ago> Terraform is great but if you want to change to a different cloud provider you pretty much have to rewrite everything While true, the process is closer to a variable name refactor than to a complete re-write. With Terraform, you have the stack described in code and the resource names translate cleanly across cloud vendors. Certainly more so than a word doc describing infrastructure setup steps.
- evv 7y agoYeah? If you build on top of popular open infra that is hosted by a variety of providers, it shouldn't be too hard. You can build on top of K8s, Postgres, and S3-alike APIs, then use Terraform to move across AWS, GoogleCloud and DO without having to rewrite a thing.
- LargeWu 7y agoYou still need to have pretty intimate knowledge of your stack provider though. Terraform is a way to formally express your infrastructure via code, but you still need to know how all of your components need to be configured and wired together. It doesn't give you any of that.