mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 06:19:33 +01:00
4a469513dd
* Requires poseidon v0.11+ and Flatcar Linux 3185.0.0+ (action required) * Previously, Flatcar Linux configs have been parsed as Container Linux Configs to Ignition v2.2.0 specs by poseidon/ct * Flatcar Linux starting in 3185.0.0 now supports Ignition v3.x specs (which are rendered from Butane Configs, like Fedora CoreOS) * poseidon/ct v0.11.0 adds support for the flatcar Butane Config variant so that Flatcar Linux can use Ignition v3.x Rel: * [Flatcar Support](https://flatcar-linux.org/docs/latest/provisioning/ignition/specification/#ignition-v3) * [poseidon/ct support](https://github.com/poseidon/terraform-provider-ct/pull/131)
14 lines
246 B
HCL
14 lines
246 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = ">= 0.13.0, < 2.0.0"
|
|
required_providers {
|
|
aws = ">= 2.23, <= 5.0"
|
|
null = ">= 2.1"
|
|
ct = {
|
|
source = "poseidon/ct"
|
|
version = "~> 0.11"
|
|
}
|
|
}
|
|
}
|