mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 18:49:34 +01:00
c6586b69fd
* Fix issue where Azure defaults to Deallocate eviction policy, which required manually restarting deallocated workers * Require terraform-provider-azurerm v1.19+ to support setting the eviction_policy
26 lines
306 B
HCL
26 lines
306 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = ">= 0.11.0"
|
|
}
|
|
|
|
provider "azurerm" {
|
|
version = "~> 1.19"
|
|
}
|
|
|
|
provider "local" {
|
|
version = "~> 1.0"
|
|
}
|
|
|
|
provider "null" {
|
|
version = "~> 1.0"
|
|
}
|
|
|
|
provider "template" {
|
|
version = "~> 1.0"
|
|
}
|
|
|
|
provider "tls" {
|
|
version = "~> 1.0"
|
|
}
|