mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-25 19:59:34 +01:00
9d16f5c78a
* 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
26 lines
304 B
HCL
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"
|
|
}
|