From e7d805d9a4a69054a5a7767655714e3f4749d6dd Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Tue, 27 Aug 2019 22:00:08 -0700 Subject: [PATCH] Sync recommended versions of Terraform providers for clouds * Align Terraform provider plugin versions with those tested against --- docs/cl/aws.md | 2 +- docs/cl/azure.md | 2 +- docs/cl/digital-ocean.md | 2 +- docs/cl/google-cloud.md | 2 +- docs/fedora-coreos/aws.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/cl/aws.md b/docs/cl/aws.md index bf9e58dc..86e58021 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.23.0" + version = "2.25.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 773967cd..99a1e233 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.32.1" + version = "1.33.0" } provider "ct" { diff --git a/docs/cl/digital-ocean.md b/docs/cl/digital-ocean.md index fcb28cf7..5f0f0c47 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.6.0" + version = "1.7.0" token = "${chomp(file("~/.config/digital-ocean/token"))}" } diff --git a/docs/cl/google-cloud.md b/docs/cl/google-cloud.md index ae7e892a..ea033d5c 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.12.0" + version = "2.13.0" project = "project-id" region = "us-central1" credentials = "${file("~/.config/google-cloud/terraform.json")}" diff --git a/docs/fedora-coreos/aws.md b/docs/fedora-coreos/aws.md index 1870bdac..724c4ad4 100644 --- a/docs/fedora-coreos/aws.md +++ b/docs/fedora-coreos/aws.md @@ -52,7 +52,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf ```tf provider "aws" { - version = "2.23.0" + version = "2.25.0" region = "us-east-1" # MUST be us-east-1 right now! shared_credentials_file = "/home/user/.config/aws/credentials" }