1
0
Fork 0
mirror of https://github.com/poseidon/typhoon synced 2024-05-27 01:46:23 +02:00
typhoon/digital-ocean/flatcar-linux/kubernetes/versions.tf
Dalton Hubble 4220b9ce18 Add support for Terraform v0.14.4+
* Support Terraform v0.13.x and v0.14.4+
2021-01-12 21:43:12 -08:00

21 lines
345 B
HCL

# Terraform version and plugin versions
terraform {
required_version = ">= 0.13.0, < 0.15.0"
required_providers {
template = "~> 2.1"
null = "~> 2.1"
ct = {
source = "poseidon/ct"
version = "~> 0.6"
}
digitalocean = {
source = "digitalocean/digitalocean"
version = "~> 1.20"
}
}
}