From 3d5be86aaec32f75d940ebf2db7aaf5750ecd3fa Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Wed, 19 Jun 2019 21:58:43 -0700 Subject: [PATCH] Update provider plugin versions in tutorial docs * Update Terraform provider plugin versions in docs to reflect the recommended versions that we actively use --- docs/cl/aws.md | 4 ++-- docs/cl/azure.md | 4 ++-- docs/cl/bare-metal.md | 2 +- docs/cl/digital-ocean.md | 4 ++-- docs/cl/google-cloud.md | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/cl/aws.md b/docs/cl/aws.md index 2fbf01f7..857a72b7 100644 --- a/docs/cl/aws.md +++ b/docs/cl/aws.md @@ -18,7 +18,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.1 +Terraform v0.12.2 ``` 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. @@ -49,7 +49,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf ```tf provider "aws" { - version = "2.12.0" + version = "2.15.0" region = "eu-central-1" shared_credentials_file = "/home/user/.config/aws/credentials" } diff --git a/docs/cl/azure.md b/docs/cl/azure.md index 7b86eed6..fba53696 100644 --- a/docs/cl/azure.md +++ b/docs/cl/azure.md @@ -21,7 +21,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.1 +Terraform v0.12.2 ``` 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. @@ -50,7 +50,7 @@ Configure the Azure provider in a `providers.tf` file. ```tf provider "azurerm" { - version = "1.29.0" + version = "1.30.1" } provider "ct" { diff --git a/docs/cl/bare-metal.md b/docs/cl/bare-metal.md index d4068890..b9ad5e78 100644 --- a/docs/cl/bare-metal.md +++ b/docs/cl/bare-metal.md @@ -111,7 +111,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.1 +Terraform v0.12.2 ``` 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. diff --git a/docs/cl/digital-ocean.md b/docs/cl/digital-ocean.md index 9ac44a4b..0eb0a2ab 100644 --- a/docs/cl/digital-ocean.md +++ b/docs/cl/digital-ocean.md @@ -18,7 +18,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.1 +Terraform v0.12.2 ``` 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. @@ -50,7 +50,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file. ```tf provider "digitalocean" { - version = "1.3.0" + version = "1.4.0" token = "${chomp(file("~/.config/digital-ocean/token"))}" } diff --git a/docs/cl/google-cloud.md b/docs/cl/google-cloud.md index 4cbdf93f..adead555 100644 --- a/docs/cl/google-cloud.md +++ b/docs/cl/google-cloud.md @@ -18,7 +18,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.1 +Terraform v0.12.2 ``` 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. @@ -49,7 +49,7 @@ Configure the Google Cloud provider to use your service account key, project-id, ```tf provider "google" { - version = "2.7.0" + version = "2.9.0" project = "project-id" region = "us-central1" credentials = "${file("~/.config/google-cloud/terraform.json")}"