Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Terraform to version 1.0.3 #318

Merged
merged 3 commits into from
Jul 30, 2021
Merged
Show file tree
Hide file tree
Changes from 2 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
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