typhoon/google-cloud/container-linux/kubernetes/require.tf
Dalton Hubble 9d16f5c78a Update min Google plugin and remove target pool workaround
* With google provider 1.2, target pool instances can use self_link
and zone/name formats without causing a diff on each plan
* Original workaround: 77fc14db71
2017-11-10 21:15:19 -08:00

26 lines
304 B
HCL

# Terraform version and plugin versions
terraform {
required_version = ">= 0.10.4"
}
provider "google" {
version = "~> 1.2"
}
provider "local" {
version = "~> 1.0"
}
provider "null" {
version = "~> 1.0"
}
provider "template" {
version = "~> 1.0"
}
provider "tls" {
version = "~> 1.0"
}