Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #122 from kinvolk/kai/update-matchbox-version
Browse files Browse the repository at this point in the history
bare-metal: Update Matchbox Terraform Provider
  • Loading branch information
pothos committed Jan 6, 2020
2 parents 1ed4390 + 1200f49 commit 89c3a65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci/baremetal/provider.tf
Original file line number Diff line number Diff line change
@@ -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"))}"
Expand Down
8 changes: 4 additions & 4 deletions docs/flatcar-linux/bare-metal.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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")}"
Expand Down

0 comments on commit 89c3a65

Please sign in to comment.