mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 04:09:34 +01:00
7b0ea23cdc
* Add support for `terraform-provider-azurerm` v2.0+. Require `terraform-provider-azurerm` v2.0+ and drop v1.x support since the Azure provider major release is not backwards compatible * Use Azure's new Linux VM and Linux VM Scale Set resources * Change controller's Azure disk caching to None * Associate subnets (in addition to NICs) with security groups (aesthetic) * If set, change `worker_priority` from `Low` to `Spot` (action required) Related: * https://www.terraform.io/docs/providers/azurerm/guides/2.0-upgrade-guide.html
13 lines
212 B
HCL
13 lines
212 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = "~> 0.12.6"
|
|
required_providers {
|
|
azurerm = "~> 2.0"
|
|
ct = "~> 0.3"
|
|
template = "~> 2.1"
|
|
null = "~> 2.1"
|
|
}
|
|
}
|
|
|