diff --git a/ci/baremetal/provider.tf b/ci/baremetal/provider.tf index 8999e5c4..b1a71936 100644 --- a/ci/baremetal/provider.tf +++ b/ci/baremetal/provider.tf @@ -1,5 +1,5 @@ provider "matchbox" { - version = "0.2.3" + version = "0.3.0" ca = "${file(pathexpand("~/pxe-testbed/.matchbox/ca.crt"))}" client_cert = "${file(pathexpand("~/pxe-testbed/.matchbox/client.crt"))}" client_key = "${file(pathexpand("~/pxe-testbed/.matchbox/client.key"))}" diff --git a/docs/flatcar-linux/bare-metal.md b/docs/flatcar-linux/bare-metal.md index 4c3d34ea..13fd9ef7 100644 --- a/docs/flatcar-linux/bare-metal.md +++ b/docs/flatcar-linux/bare-metal.md @@ -117,9 +117,9 @@ Terraform v0.11.13 Add the [terraform-provider-matchbox](https://github.com/poseidon/terraform-provider-matchbox) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name. ```sh -wget https://github.com/poseidon/terraform-provider-matchbox/releases/download/v0.2.3/terraform-provider-matchbox-v0.2.3-linux-amd64.tar.gz -tar xzf terraform-provider-matchbox-v0.2.3-linux-amd64.tar.gz -mv terraform-provider-matchbox-v0.2.3-linux-amd64/terraform-provider-matchbox ~/.terraform.d/plugins/terraform-provider-matchbox_v0.2.3 +wget https://github.com/poseidon/terraform-provider-matchbox/releases/download/v0.3.0/terraform-provider-matchbox-v0.3.0-linux-amd64.tar.gz +tar xzf terraform-provider-matchbox-v0.3.0-linux-amd64.tar.gz +mv terraform-provider-matchbox-v0.3.0-linux-amd64/terraform-provider-matchbox ~/.terraform.d/plugins/terraform-provider-matchbox_v0.3.0 ``` Add the [terraform-provider-ct](https://github.com/poseidon/terraform-provider-ct) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name. @@ -142,7 +142,7 @@ Configure the Matchbox provider to use your Matchbox API endpoint and client cer ```tf provider "matchbox" { - version = "0.2.3" + version = "0.3.0" endpoint = "matchbox.example.com:8081" client_cert = "${file("~/.config/matchbox/client.crt")}" client_key = "${file("~/.config/matchbox/client.key")}"