From 2e011c10b36498b8a9da747d16978b9c60c03bc5 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Tue, 15 Feb 2022 08:34:50 -0800 Subject: [PATCH] Update version in README --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d40f531..12766d2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # terraform-provider-ct [![Build Status](https://github.com/poseidon/terraform-provider-ct/workflows/test/badge.svg)](https://github.com/poseidon/terraform-provider-ct/actions?query=workflow%3Atest+branch%3Amaster) -`terraform-provider-ct` allows Terraform to validate a [Container Linux Config](https://github.com/coreos/container-linux-config-transpiler/blob/master/doc/configuration.md) or a [Butane config](https://coreos.github.io/butane/specs/) and transpile it as an [Ignition config](https://coreos.github.io/ignition/) for machine consumption. +`terraform-provider-ct` allows Terraform to validate a [Butane config](https://coreos.github.io/butane/specs/) or [Container Linux Config](https://github.com/coreos/container-linux-config-transpiler/blob/master/doc/configuration.md) and transpile to an [Ignition config](https://coreos.github.io/ignition/) for machine consumption. ## Usage @@ -13,17 +13,20 @@ terraform { required_providers { ct = { source = "poseidon/ct" - version = "0.9.1" + version = "0.9.2" } } } ``` -Define a Container Linux Config (CLC) or Butane config (for Fedora CoreOS): + +Define a Butane config (for Fedora CoreOS) or Container Linux Config (for Flatcar Linux): ```yaml -# Container Linux Config +# Butane config --- +variant: fcos +version: 1.4.0 passwd: users: - name: core @@ -32,10 +35,8 @@ passwd: ``` ```yaml -# Butane config +# Container Linux Config --- -variant: fcos -version: 1.4.0 passwd: users: - name: core