infrastructure/terraform/terraform.tf
Jake Howard 48e23e8c00
Track new linode instance in terraform
The definition is pretty verbose. Apparently it does that if you create it through the UI
2020-12-05 13:25:50 +00:00

21 lines
357 B
HCL

terraform {
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "2.11.0"
}
vultr = {
source = "vultr/vultr"
version = "1.4.1"
}
aws = {
source = "hashicorp/aws"
version = "3.8.0"
}
linode = {
source = "linode/linode"
version = "1.13.4"
}
}
}