From de251bd94f9fd60807b6128be28f499aeeb8d6e4 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Sat, 2 Mar 2019 11:00:21 -0800 Subject: [PATCH] Update tutorials to prefer newer provider plugins over min version * Minimum versions of Terraform provider plugins are enforced in each module already. Its better to provide examples with newer versions. Some folks don't update them * Previously, tutorials showed the minimum viable version of each terraform provider that might be used --- docs/atomic/aws.md | 2 +- docs/atomic/digital-ocean.md | 2 +- docs/atomic/google-cloud.md | 2 +- docs/cl/aws.md | 2 +- docs/cl/azure.md | 2 +- docs/cl/digital-ocean.md | 2 +- docs/cl/google-cloud.md | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/atomic/aws.md b/docs/atomic/aws.md index 695f45a7..ec481ce3 100644 --- a/docs/atomic/aws.md +++ b/docs/atomic/aws.md @@ -44,7 +44,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf ```tf provider "aws" { - version = "~> 1.13.0" + version = "~> 1.60.0" alias = "default" region = "eu-central-1" diff --git a/docs/atomic/digital-ocean.md b/docs/atomic/digital-ocean.md index 6a4ad686..465b49fe 100644 --- a/docs/atomic/digital-ocean.md +++ b/docs/atomic/digital-ocean.md @@ -45,7 +45,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file. ```tf provider "digitalocean" { - version = "1.0.0" + version = "~> 1.1.0" token = "${chomp(file("~/.config/digital-ocean/token"))}" alias = "default" } diff --git a/docs/atomic/google-cloud.md b/docs/atomic/google-cloud.md index 3abcd06c..2f362b4f 100644 --- a/docs/atomic/google-cloud.md +++ b/docs/atomic/google-cloud.md @@ -45,7 +45,7 @@ Configure the Google Cloud provider to use your service account key, project-id, ```tf provider "google" { - version = "2.0.0" + version = "~> 2.1.0" alias = "default" credentials = "${file("~/.config/google-cloud/terraform.json")}" diff --git a/docs/cl/aws.md b/docs/cl/aws.md index 0339460b..91338bed 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 = "~> 1.13.0" + version = "~> 1.60.0" alias = "default" region = "eu-central-1" diff --git a/docs/cl/azure.md b/docs/cl/azure.md index 299b1d65..e29aca22 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.16.0" + version = "~> 1.22.1" alias = "default" } diff --git a/docs/cl/digital-ocean.md b/docs/cl/digital-ocean.md index fc4937da..8dfcdc16 100644 --- a/docs/cl/digital-ocean.md +++ b/docs/cl/digital-ocean.md @@ -50,7 +50,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file. ```tf provider "digitalocean" { - version = "1.0.0" + version = "~> 1.1.0" token = "${chomp(file("~/.config/digital-ocean/token"))}" alias = "default" } diff --git a/docs/cl/google-cloud.md b/docs/cl/google-cloud.md index a8687da2..3f27114b 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.0.0" + version = "~> 2.1.0" alias = "default" credentials = "${file("~/.config/google-cloud/terraform.json")}"