From cad12804c8501c3b1cdb79bc2e3118cfecd887a1 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Wed, 7 Aug 2019 20:42:40 -0700 Subject: [PATCH] Refresh terraform provider versions used in docs * Sync terraform provider versions with those tested against --- docs/cl/aws.md | 6 +++--- docs/cl/azure.md | 6 +++--- docs/cl/bare-metal.md | 2 +- docs/cl/digital-ocean.md | 4 ++-- docs/cl/google-cloud.md | 4 ++-- docs/fedora-coreos/aws.md | 4 ++-- docs/fedora-coreos/bare-metal.md | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/cl/aws.md b/docs/cl/aws.md index 68bf9f1d..ea5f61b9 100644 --- a/docs/cl/aws.md +++ b/docs/cl/aws.md @@ -18,7 +18,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.2 +Terraform v0.12.6 ``` Add the [terraform-provider-ct](https://github.com/poseidon/terraform-provider-ct) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name. @@ -49,7 +49,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf ```tf provider "aws" { - version = "2.15.0" + version = "2.23.0" region = "eu-central-1" shared_credentials_file = "/home/user/.config/aws/credentials" } @@ -69,7 +69,7 @@ Additional configuration options are described in the `aws` provider [docs](http Define a Kubernetes cluster using the module `aws/container-linux/kubernetes`. ```tf -module "aws-tempest" { +module "tempest" { source = "git::https://github.com/poseidon/typhoon//aws/container-linux/kubernetes?ref=v1.15.2" # AWS diff --git a/docs/cl/azure.md b/docs/cl/azure.md index f68b11e0..e63b690b 100644 --- a/docs/cl/azure.md +++ b/docs/cl/azure.md @@ -21,7 +21,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.2 +Terraform v0.12.6 ``` Add the [terraform-provider-ct](https://github.com/poseidon/terraform-provider-ct) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name. @@ -50,7 +50,7 @@ Configure the Azure provider in a `providers.tf` file. ```tf provider "azurerm" { - version = "1.30.1" + version = "1.32.1" } provider "ct" { @@ -65,7 +65,7 @@ Additional configuration options are described in the `azurerm` provider [docs]( Define a Kubernetes cluster using the module `azure/container-linux/kubernetes`. ```tf -module "azure-ramius" { +module "ramius" { source = "git::https://github.com/poseidon/typhoon//azure/container-linux/kubernetes?ref=v1.15.2" # Azure diff --git a/docs/cl/bare-metal.md b/docs/cl/bare-metal.md index 70c24919..725a2e96 100644 --- a/docs/cl/bare-metal.md +++ b/docs/cl/bare-metal.md @@ -111,7 +111,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.2 +Terraform v0.12.6 ``` Add the [terraform-provider-matchbox](https://github.com/poseidon/terraform-provider-matchbox) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name. diff --git a/docs/cl/digital-ocean.md b/docs/cl/digital-ocean.md index 4c971a7e..62f36a32 100644 --- a/docs/cl/digital-ocean.md +++ b/docs/cl/digital-ocean.md @@ -18,7 +18,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.2 +Terraform v0.12.6 ``` Add the [terraform-provider-ct](https://github.com/poseidon/terraform-provider-ct) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name. @@ -50,7 +50,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file. ```tf provider "digitalocean" { - version = "1.4.0" + version = "1.6.0" token = "${chomp(file("~/.config/digital-ocean/token"))}" } diff --git a/docs/cl/google-cloud.md b/docs/cl/google-cloud.md index 16009796..15b0b25e 100644 --- a/docs/cl/google-cloud.md +++ b/docs/cl/google-cloud.md @@ -18,7 +18,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.2 +Terraform v0.12.6 ``` Add the [terraform-provider-ct](https://github.com/poseidon/terraform-provider-ct) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name. @@ -49,7 +49,7 @@ Configure the Google Cloud provider to use your service account key, project-id, ```tf provider "google" { - version = "2.9.0" + version = "2.12.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 37ce42e7..4ab27d4a 100644 --- a/docs/fedora-coreos/aws.md +++ b/docs/fedora-coreos/aws.md @@ -21,7 +21,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.2 +Terraform v0.12.6 ``` Add the [terraform-provider-ct](https://github.com/poseidon/terraform-provider-ct) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name. @@ -52,7 +52,7 @@ Configure the AWS provider to use your access key credentials in a `providers.tf ```tf provider "aws" { - version = "2.19.0" + version = "2.23.0" region = "us-east-1" # MUST be us-east-1 right now! shared_credentials_file = "/home/user/.config/aws/credentials" } diff --git a/docs/fedora-coreos/bare-metal.md b/docs/fedora-coreos/bare-metal.md index 7aee0fcf..305d1763 100644 --- a/docs/fedora-coreos/bare-metal.md +++ b/docs/fedora-coreos/bare-metal.md @@ -114,7 +114,7 @@ Install [Terraform](https://www.terraform.io/downloads.html) v0.12.x on your sys ```sh $ terraform version -Terraform v0.12.2 +Terraform v0.12.6 ``` Add the [terraform-provider-matchbox](https://github.com/poseidon/terraform-provider-matchbox) plugin binary for your system to `~/.terraform.d/plugins/`, noting the final name.