mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-25 18:49:33 +01:00
19ee57dc04
* terraform-provider-google v2.19.0 deprecates `instance_template` within `google_compute_region_instance_group_manager` in order to support a scheme with multiple version blocks. Adapt our single version to the new format to resolve deprecation warnings. * Fixes: Warning: "instance_template": [DEPRECATED] This field will be replaced by `version.instance_template` in 3.0.0 * Require terraform-provider-google v2.19.0+ (action required)
12 lines
212 B
HCL
12 lines
212 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = "~> 0.12.6"
|
|
required_providers {
|
|
google = "~> 2.19"
|
|
ct = "~> 0.3"
|
|
template = "~> 2.1"
|
|
null = "~> 2.1"
|
|
}
|
|
}
|