Skip to content

Commit

Permalink
Merge pull request #121 from kbst/updateversions
Browse files Browse the repository at this point in the history
Update CLI versions
  • Loading branch information
pst authored Aug 14, 2020
2 parents 89e5fe0 + 2c7a2a3 commit d785eee
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions aws/cluster/providers.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://github.com/terraform-providers/terraform-provider-aws/releases
provider "aws" {
version = "~> 2.63.0"
version = "~> 3.2.0"
}

# https://github.com/terraform-providers/terraform-provider-external/releases
Expand All @@ -10,7 +10,7 @@ provider "external" {

# https://github.com/terraform-providers/terraform-provider-kubernetes/releases
provider "kubernetes" {
version = "~> 1.11.3"
version = "~> 1.12.0"
}

# https://github.com/terraform-providers/terraform-provider-template/releases
Expand Down
8 changes: 4 additions & 4 deletions azurerm/cluster/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@ provider "external" {

# https://github.com/terraform-providers/terraform-provider-azurerm/releases
provider "azurerm" {
version = "~> 2.11.0"
version = "~> 2.13.0"

features {}
}

# https://github.com/terraform-providers/terraform-provider-azuread/releases
provider "azuread" {
version = "~> 0.9.0"
version = "~> 0.11.0"
}

# https://github.com/terraform-providers/terraform-provider-kubernetes/releases
provider "kubernetes" {
version = "~> 1.11.3"
version = "~> 1.12.0"
}

# https://github.com/terraform-providers/terraform-provider-random/releases
provider "random" {
version = "~> 2.2.1"
version = "~> 2.3.0"
}

# https://github.com/terraform-providers/terraform-provider-template/releases
Expand Down
4 changes: 2 additions & 2 deletions google/cluster/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ provider "external" {

# https://github.com/terraform-providers/terraform-provider-google/releases
provider "google" {
version = "~> 3.22.0"
version = "~> 3.34.0"
}

# https://github.com/terraform-providers/terraform-provider-kubernetes/releases
provider "kubernetes" {
version = "~> 1.11.3"
version = "~> 1.12.0"
}

# https://github.com/terraform-providers/terraform-provider-template/releases
Expand Down
10 changes: 5 additions & 5 deletions oci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ RUN mkdir -p /opt/bin
# Common builder
FROM builder AS common-builder

ARG KUBECTL_VERSION=v1.18.3
ARG KUBECTL_VERSION=v1.18.7
ARG KUSTOMIZE_VERSION=v3.6.1
ARG TERRAFORM_VERSION=0.12.25
ARG TERRAFORM_VERSION=0.12.29
ARG TERRAFORM_PROVIDER_KUSTOMIZE_VERSION=v0.2.0-beta.0

RUN echo "KUBECTL_VERSION: ${KUBECTL_VERSION}" \
Expand Down Expand Up @@ -59,7 +59,7 @@ COPY entrypoint entrypoint_user /opt/bin/
# AWS builder
FROM builder AS aws-builder

ARG AWS_IAM_AUTHENTICATOR_VERSION=0.5.0
ARG AWS_IAM_AUTHENTICATOR_VERSION=0.5.1

RUN mkdir -p /opt/aws/bin

Expand All @@ -80,7 +80,7 @@ RUN echo "AWS_CLI_VERSION: N/A" \
# GCP builder
FROM builder AS gcp-builder

ARG GOOGLE_CLOUD_SDK_VERSION=293.0.0
ARG GOOGLE_CLOUD_SDK_VERSION=305.0.0

RUN echo "GOOGLE_CLOUD_SDK_VERSION: ${GOOGLE_CLOUD_SDK_VERSION}" \
&& curl -O https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-${GOOGLE_CLOUD_SDK_VERSION}-linux-x86_64.tar.gz \
Expand All @@ -94,7 +94,7 @@ RUN echo "GOOGLE_CLOUD_SDK_VERSION: ${GOOGLE_CLOUD_SDK_VERSION}" \
# Azure builder
FROM builder AS azure-builder

ARG AZURE_CLI_VERSION=2.6.0
ARG AZURE_CLI_VERSION=2.10.1

RUN apt-get update && apt-get install -y \
libffi-dev
Expand Down

0 comments on commit d785eee

Please sign in to comment.