Skip to content

Commit

Permalink
Update tutorials to prefer newer provider plugins over min version
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
dghubble committed Mar 2, 2019
1 parent fc277ea commit de251bd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/atomic/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/atomic/digital-ocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/atomic/google-cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")}"
Expand Down
2 changes: 1 addition & 1 deletion docs/cl/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/cl/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/cl/digital-ocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/cl/google-cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")}"
Expand Down

0 comments on commit de251bd

Please sign in to comment.