mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 04:09:34 +01:00
2ba0181dbe
* Replace v0.11 bracket type hints with Terraform v0.12 list expressions * Use expression syntax instead of interpolated strings, where suggested * Update AWS tutorial and worker pools documentation * Define Terraform and plugin version requirements in versions.tf * Require aws ~> 2.7 to support Terraform v0.12 * Require ct ~> 0.3.2 to support Terraform v0.12
12 lines
213 B
HCL
12 lines
213 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = "~> 0.12.0"
|
|
required_providers {
|
|
aws = "~> 2.7"
|
|
ct = "~> 0.3.2"
|
|
template = "~> 2.1"
|
|
null = "~> 2.1"
|
|
}
|
|
}
|