1
0
Fork 0
mirror of https://github.com/poseidon/typhoon synced 2024-05-27 09:56:23 +02:00
typhoon/digital-ocean/flatcar-linux/kubernetes/versions.tf
Dalton Hubble cc00afa4e1 Add Terraform v0.13 input variable validations
* Support for migrating from Terraform v0.12.x to v0.13.x
was added in v1.18.8
* Require Terraform v0.13+. Drop support for Terraform v0.12
2020-11-17 12:02:34 -08:00

21 lines
337 B
HCL

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