mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 08:29:34 +01:00
db36959178
* Replace v0.11 bracket type hints with Terraform v0.12 list expressions * Use expression syntax instead of interpolated strings, where suggested * Update bare-metal tutorial * Define `clc_snippets` type constraint map(list(string)) * Define Terraform and plugin version requirements in versions.tf * Require matchbox ~> 0.3.0 to support Terraform v0.12 * Require ct ~> 0.3.2 to support Terraform v0.12
13 lines
216 B
HCL
13 lines
216 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = "~> 0.12.0"
|
|
required_providers {
|
|
matchbox = "~> 0.3.0"
|
|
ct = "~> 0.3.2"
|
|
template = "~> 2.1"
|
|
null = "~> 2.1"
|
|
}
|
|
}
|
|
|