Bump Terraform provider versions in docs

* Bump Terraform provider versions to reflect the versions
used by the maintainer
This commit is contained in:
Dalton Hubble
2019-05-20 18:29:56 +02:00
parent 5653ba38cf
commit bef9b991b7
3 changed files with 4 additions and 2 deletions

View File

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

View File

@ -50,7 +50,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file.
```tf
provider "digitalocean" {
version = "~> 1.2.0"
version = "~> 1.3.0"
token = "${chomp(file("~/.config/digital-ocean/token"))}"
alias = "default"
}