Skip to content

Commit 80ec86f

Browse files
author
Sean Sundberg
committed
Bumps terraform versions
- Terraform cli to 0.12.23 - IBM Cloud terraform provider - versions 1.2.1, 1.2.2, and 1.2.3
1 parent 13486b0 commit 80ec86f

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

Dockerfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM registry.access.redhat.com/ubi8/ubi:8.1-397
22

3-
ENV TERRAFORM_VERSION 0.12.20
3+
ENV TERRAFORM_VERSION 0.12.23
44
ENV TERRAFORM_IBMCLOUD_VERSION 1.2.3
55
ENV TERRAFORM_KUBERNETES_VERSION 1.10.0
66
ENV TERRAFORM_HELM_VERSION 1.0.0
@@ -98,6 +98,14 @@ RUN mkdir -p ${HOME}/.terraform.d/plugins
9898
WORKDIR ${HOME}/.terraform.d/plugins
9999

100100
# Install IBM Cloud Terraform Provider
101+
RUN curl -O -L https://github.com/IBM-Cloud/terraform-provider-ibm/releases/download/v1.2.1/linux_amd64.zip &&\
102+
unzip linux_amd64.zip && \
103+
chmod +x terraform-provider-ibm_* &&\
104+
rm -rf linux_amd64.zip
105+
RUN curl -O -L https://github.com/IBM-Cloud/terraform-provider-ibm/releases/download/v1.2.2/linux_amd64.zip &&\
106+
unzip linux_amd64.zip && \
107+
chmod +x terraform-provider-ibm_* &&\
108+
rm -rf linux_amd64.zip
101109
RUN curl -O -L https://github.com/IBM-Cloud/terraform-provider-ibm/releases/download/v${TERRAFORM_IBMCLOUD_VERSION}/linux_amd64.zip &&\
102110
unzip linux_amd64.zip && \
103111
chmod +x terraform-provider-ibm_* &&\

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
This repository builds a Docker image whose container is a client for using IBM Cloud.
44

55
The container includes the following tools - (tool@version):
6-
- terraform cli@0.12.20
6+
- terraform cli@0.12.23
77
- terraform plugins:
88
- terraform-provider-helm@1.0.0
99
- terraform-provider-kube@1.10.0
1010
- terraform-provider-ibm@1.2.3
11+
- terraform-provider-ibm@1.2.2
12+
- terraform-provider-ibm@1.2.1
1113
- calico cli@3.12.0
1214
- ibmcloud cli
1315
- ibmcloud plugins:

0 commit comments

Comments
 (0)