Require minimum Terraform and plugin versions

* Bump minimum Terraform version to v0.10.4
* Allow minor version updates for 1.0+ plugins
* Fix versions for plugins which are pre-1.0
This commit is contained in:
Dalton Hubble
2017-10-25 22:59:11 -07:00
parent 8582e19077
commit f6c6e85f84
8 changed files with 104 additions and 8 deletions

View File

@ -0,0 +1,25 @@
# Terraform version and plugin versions
terraform {
required_version = ">= 0.10.4"
}
provider "digitalocean" {
version = "0.1.2"
}
provider "local" {
version = "~> 1.0.0"
}
provider "null" {
version = "~> 1.0.0"
}
provider "template" {
version = "~> 1.0.0"
}
provider "tls" {
version = "~> 1.0.0"
}