Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [10.7.0] - 2023-01-11
### Changed
- Upgraded terraform to 1.3.7

## [10.6.0] - 2022-09-08
### Changed
- Upgraded terraform to 1.2.9

## [10.5.0] - 2022-02-04
### Changed
- Upgraded terraform to 1.1.5
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN curl -L -o /tmp/terraform-docs.tar.gz https://github.com/terraform-docs/terr
mv /tmp/terraform-docs /usr/local/bin/ && \
rm -rf /tmp/*

ARG TERRAFORM_VERSION=1.2.9
ARG TERRAFORM_VERSION=1.3.7
RUN curl -L -o /tmp/terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
unzip /tmp/terraform.zip -d /tmp/ && \
mv /tmp/terraform /usr/local/bin/terraform && \
Expand Down