Files
container.training/prepare-tf/modules/linode/providers.tf
Jérôme Petazzoni ae74d9069f 🪐 Add Terraform config to provision clusters
This is a new provisioning mechanism. Right now, it can
provision clusters on:
- Digital Ocean
- Linode
- Oracle Cloud
- Scaleway

Others should be relatively straightforward to add.
Check the README in the prepare-tf subdirectory for details.
2021-10-19 02:44:11 +02:00

9 lines
119 B
HCL

terraform {
required_providers {
linode = {
source = "linode/linode"
version = "1.22.0"
}
}
}