From e73cccd7ebc669bc5de4af026a750786126095dd Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Tue, 16 Apr 2019 00:05:13 -0700 Subject: [PATCH] Update provider versions in tutorial docs * Update terraform provider plugin version in docs to reflect the recommended current versions that are currently used --- CHANGES.md | 2 ++ docs/cl/aws.md | 2 +- docs/cl/azure.md | 2 +- docs/cl/google-cloud.md | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 010c910bb..591d8c221 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,8 @@ Notable changes between versions. ## Latest +## v1.14.1 + * Kubernetes [v1.14.1](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#v1141) #### Addons diff --git a/docs/cl/aws.md b/docs/cl/aws.md index c2ed02f92..b0ffc41cb 100644 --- a/docs/cl/aws.md +++ b/docs/cl/aws.md @@ -49,7 +49,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf ```tf provider "aws" { - version = "~> 2.3.0" + version = "~> 2.6.0" alias = "default" region = "eu-central-1" diff --git a/docs/cl/azure.md b/docs/cl/azure.md index 144ee3982..147e90202 100644 --- a/docs/cl/azure.md +++ b/docs/cl/azure.md @@ -50,7 +50,7 @@ Configure the Azure provider in a `providers.tf` file. ```tf provider "azurerm" { - version = "~> 1.23.0" + version = "~> 1.24.0" alias = "default" } diff --git a/docs/cl/google-cloud.md b/docs/cl/google-cloud.md index 4afc2235d..ab9bc2496 100644 --- a/docs/cl/google-cloud.md +++ b/docs/cl/google-cloud.md @@ -49,7 +49,7 @@ Configure the Google Cloud provider to use your service account key, project-id, ```tf provider "google" { - version = "~> 2.2.0" + version = "~> 2.3.0" alias = "default" credentials = "${file("~/.config/google-cloud/terraform.json")}"