Update provider versions in tutorial docs

* Update terraform provider plugin version in docs to reflect
the recommended current versions that are currently used
This commit is contained in:
Dalton Hubble 2019-04-16 00:05:13 -07:00
parent a141c5fe9e
commit e73cccd7eb
4 changed files with 5 additions and 3 deletions

View File

@ -4,6 +4,8 @@ Notable changes between versions.
## Latest ## Latest
## v1.14.1
* Kubernetes [v1.14.1](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#v1141) * Kubernetes [v1.14.1](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#v1141)
#### Addons #### Addons

View File

@ -49,7 +49,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf
```tf ```tf
provider "aws" { provider "aws" {
version = "~> 2.3.0" version = "~> 2.6.0"
alias = "default" alias = "default"
region = "eu-central-1" region = "eu-central-1"

View File

@ -50,7 +50,7 @@ Configure the Azure provider in a `providers.tf` file.
```tf ```tf
provider "azurerm" { provider "azurerm" {
version = "~> 1.23.0" version = "~> 1.24.0"
alias = "default" alias = "default"
} }

View File

@ -49,7 +49,7 @@ Configure the Google Cloud provider to use your service account key, project-id,
```tf ```tf
provider "google" { provider "google" {
version = "~> 2.2.0" version = "~> 2.3.0"
alias = "default" alias = "default"
credentials = "${file("~/.config/google-cloud/terraform.json")}" credentials = "${file("~/.config/google-cloud/terraform.json")}"