mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-25 18:49:33 +01:00
fa3184fb9c
* Allow terraform-provider-ct versions v0.6+ (e.g. v0.7.1) Before, only v0.6.x point updates were allowed * Update terraform-provider-ct to v0.7.1 in docs * READ the docs before updating terraform-provider-ct, as changing worker user-data is handled differently by different cloud platforms
21 lines
324 B
HCL
21 lines
324 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = "~> 0.13.0"
|
|
required_providers {
|
|
template = "~> 2.1"
|
|
null = "~> 2.1"
|
|
|
|
ct = {
|
|
source = "poseidon/ct"
|
|
version = "~> 0.6"
|
|
}
|
|
|
|
matchbox = {
|
|
source = "poseidon/matchbox"
|
|
version = "~> 0.4.1"
|
|
}
|
|
}
|
|
}
|
|
|