Skip to content

Commit

Permalink
Update Terraform to version 1.0.3 (#318)
Browse files Browse the repository at this point in the history
Co-authored-by: Brooke Hamilton <45323234+brooke-hamilton@users.noreply.github.com>
  • Loading branch information
Chambras and brooke-hamilton authored Jul 30, 2021
1 parent d33214b commit ee4576e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive

# Terraform, providers and tflint versions
ARG TERRAFORM_VERSION=1.0.0
ARG AZURERM_VERSION=2.67.0
ARG TERRAFORM_VERSION=1.0.3
ARG AZURERM_VERSION=2.69.0
ARG RANDOM_VERSION=3.1.0
ARG TIME_VERSION=0.7.1
ARG TFLINT_VERSION=0.29.1
ARG TFLINT_AZURERM=0.10.1
ARG TIME_VERSION=0.7.2
ARG TFLINT_VERSION=0.30.0
ARG TFLINT_AZURERM=0.11.0

# Azure CLI version
ARG AZURE_CLI_VERSION=2.25.0-1~focal
ARG AZURE_CLI_VERSION=2.26.1-1~focal

# Update distro (software-properties-common installs the add-apt-repository command)
RUN apt-get update \
Expand Down
5 changes: 3 additions & 2 deletions src/terraform/mlz/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@
terraform {
backend "azurerm" {}

required_version = "= 1.0.3"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "= 2.67.0"
version = "= 2.69.0"
}
random = {
source = "hashicorp/random"
version = "= 3.1.0"
}
time = {
source = "hashicorp/time"
version = "0.7.1"
version = "0.7.2"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/terraform/tier3/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
# Licensed under the MIT License.
terraform {
backend "azurerm" {}

required_version = "= 1.0.3"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "= 2.67.0"
version = "= 2.69.0"
}
}
}
Expand Down

0 comments on commit ee4576e

Please sign in to comment.