From bef9b991b79f1dc3604a6ec869bf17435a72f475 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Mon, 20 May 2019 18:29:56 +0200 Subject: [PATCH] Bump Terraform provider versions in docs * Bump Terraform provider versions to reflect the versions used by the maintainer --- CHANGES.md | 2 ++ docs/cl/aws.md | 2 +- docs/cl/digital-ocean.md | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 2c77ce71..ef5c157a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,8 @@ Notable changes between versions. ## Latest + +## v1.14.2 * Kubernetes [v1.14.2](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#v1142) * Update etcd from v3.3.12 to [v3.3.13](https://github.com/etcd-io/etcd/releases/tag/v3.3.13) diff --git a/docs/cl/aws.md b/docs/cl/aws.md index 4dc947b0..61d502c4 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.8.0" + version = "~> 2.11.0" alias = "default" region = "eu-central-1" diff --git a/docs/cl/digital-ocean.md b/docs/cl/digital-ocean.md index faf7f042..0a738c5b 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.2.0" + version = "~> 1.3.0" token = "${chomp(file("~/.config/digital-ocean/token"))}" alias = "default" }